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

◆ VerifyData() [1/8]

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

Definition at line 201 of file DSA.cs.

202 {
203 if (data == null)
204 {
205 throw new ArgumentNullException("data");
206 }
207 return VerifyData(data, 0, data.Length, signature, hashAlgorithm);
208 }
bool VerifyData(byte[] data, byte[] signature, HashAlgorithmName hashAlgorithm)
Definition DSA.cs:201

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

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