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

◆ VerifyData() [1/8]

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

Definition at line 273 of file ECDsa.cs.

274 {
275 if (data == null)
276 {
277 throw new ArgumentNullException("data");
278 }
279 return VerifyData(data, 0, data.Length, signature, hashAlgorithm);
280 }
bool VerifyData(byte[] data, byte[] signature, HashAlgorithmName hashAlgorithm)
Definition ECDsa.cs:273

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

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