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

◆ VerifyHash() [1/4]

override bool System.Security.Cryptography.ECDsaImplementation.ECDsaCng.VerifyHash ( byte[] hash,
byte[] signature )
inline

Definition at line 357 of file ECDsaImplementation.cs.

358 {
359 if (hash == null)
360 {
361 throw new ArgumentNullException("hash");
362 }
363 if (signature == null)
364 {
365 throw new ArgumentNullException("signature");
366 }
367 return VerifyHashCore(hash, signature, DSASignatureFormat.IeeeP1363FixedFieldConcatenation);
368 }
unsafe override bool VerifyHashCore(ReadOnlySpan< byte > hash, ReadOnlySpan< byte > signature, DSASignatureFormat signatureFormat)

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