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

◆ VerifyDataCore() [2/2]

virtual bool System.Security.Cryptography.DSA.VerifyDataCore ( Stream data,
ReadOnlySpan< byte > signature,
HashAlgorithmName hashAlgorithm,
DSASignatureFormat signatureFormat )
inlineprotectedvirtualinherited

Definition at line 422 of file DSA.cs.

423 {
424 byte[] array = HashData(data, hashAlgorithm);
425 return VerifySignatureCore(array, signature, signatureFormat);
426 }
virtual bool VerifySignatureCore(ReadOnlySpan< byte > hash, ReadOnlySpan< byte > signature, DSASignatureFormat signatureFormat)
Definition DSA.cs:479
virtual byte[] HashData(byte[] data, int offset, int count, HashAlgorithmName hashAlgorithm)
Definition DSA.cs:69

References System.array, System.Security.Cryptography.DSA.HashData(), and System.Security.Cryptography.DSA.VerifySignatureCore().

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