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

◆ VerifyHash() [1/4]

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

Definition at line 491 of file ECDsaCng.cs.

492 {
493 if (hash == null)
494 {
495 throw new ArgumentNullException("hash");
496 }
497 if (signature == null)
498 {
499 throw new ArgumentNullException("signature");
500 }
501 return VerifyHash((ReadOnlySpan<byte>)hash, (ReadOnlySpan<byte>)signature);
502 }
override bool VerifyHash(byte[] hash, byte[] signature)
Definition ECDsaCng.cs:491

References System.Security.Cryptography.ECDsaCng.VerifyHash().

Referenced by System.Security.Cryptography.ECDsaCng.VerifyHash().