Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ VerifyHashCore()

unsafe override bool System.Security.Cryptography.ECDsaImplementation.ECDsaCng.VerifyHashCore ( ReadOnlySpan< byte > hash,
ReadOnlySpan< byte > signature,
DSASignatureFormat signatureFormat )
inlineprotectedvirtual

Reimplemented from System.Security.Cryptography.ECDsa.

Definition at line 375 of file ECDsaImplementation.cs.

376 {
377 if (signatureFormat != 0)
378 {
379 signature = this.ConvertSignatureToIeeeP1363(signatureFormat, signature);
380 }
382 return keyHandle.VerifyHash(hash, signature, global::Interop.NCrypt.AsymmetricPaddingMode.None, null);
383 }

References System.Security.Cryptography.ECDsaImplementation.ECDsaCng.GetDuplicatedKeyHandle().

Referenced by System.Security.Cryptography.ECDsaImplementation.ECDsaCng.VerifyHash(), and System.Security.Cryptography.ECDsaImplementation.ECDsaCng.VerifyHash().