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

◆ HashData() [1/2]

override byte[] System.Security.Cryptography.RSACryptoServiceProvider.HashData ( byte[] data,
int offset,
int count,
HashAlgorithmName hashAlgorithm )
inlineprotectedvirtual

Reimplemented from System.Security.Cryptography.RSA.

Definition at line 405 of file RSACryptoServiceProvider.cs.

406 {
407 using HashAlgorithm hashAlgorithm2 = GetHashAlgorithm(hashAlgorithm);
408 return hashAlgorithm2.ComputeHash(data, offset, count);
409 }
static HashAlgorithm GetHashAlgorithm(HashAlgorithmName hashAlgorithm)

References System.count, System.Security.Cryptography.RSACryptoServiceProvider.GetHashAlgorithm(), and System.offset.