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

◆ VerifyData() [1/4]

bool System.Security.Cryptography.RSA.VerifyData ( byte[] data,
byte[] signature,
HashAlgorithmName hashAlgorithm,
RSASignaturePadding padding )
inlineinherited

Definition at line 244 of file RSA.cs.

245 {
246 if (data == null)
247 {
248 throw new ArgumentNullException("data");
249 }
250 return VerifyData(data, 0, data.Length, signature, hashAlgorithm, padding);
251 }
bool VerifyData(byte[] data, byte[] signature, HashAlgorithmName hashAlgorithm, RSASignaturePadding padding)
Definition RSA.cs:244

References System.Security.Cryptography.RSA.VerifyData().

Referenced by System.Security.Cryptography.RSA.VerifyData().