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

◆ VerifyHash() [1/2]

override bool System.Security.Cryptography.RSACng.VerifyHash ( byte[] hash,
byte[] signature,
HashAlgorithmName hashAlgorithm,
RSASignaturePadding padding )
inlinevirtual

Reimplemented from System.Security.Cryptography.RSA.

Definition at line 672 of file RSACng.cs.

673 {
674 if (hash == null)
675 {
676 throw new ArgumentNullException("hash");
677 }
678 if (signature == null)
679 {
680 throw new ArgumentNullException("signature");
681 }
682 return VerifyHash((ReadOnlySpan<byte>)hash, (ReadOnlySpan<byte>)signature, hashAlgorithm, padding);
683 }
override bool VerifyHash(byte[] hash, byte[] signature, HashAlgorithmName hashAlgorithm, RSASignaturePadding padding)
Definition RSACng.cs:672

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

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