3 overrides of GetHashAndReset
System.Security.Cryptography.Pkcs (3)
System\Security\Cryptography\Pkcs\CmsHash.cs (3)
43internal override byte[] GetHashAndReset() => _shake256.GetHashAndReset(OutputSizeBytes); 73internal override byte[] GetHashAndReset() => _shake128.GetHashAndReset(OutputSizeBytes); 101internal override byte[] GetHashAndReset() => _incrementalHash.GetHashAndReset();
6 references to GetHashAndReset
System.Security.Cryptography.Pkcs (6)
System\Security\Cryptography\Pkcs\CmsSigner.cs (3)
278dataHash = hasher.GetHashAndReset(); 294byte[] dataHash = hasher.GetHashAndReset(); 303return hasher.GetHashAndReset();
System\Security\Cryptography\Pkcs\SignerInfo.cs (3)
719contentHash = hasher.GetHashAndReset(); 760attrHash = hasher.GetHashAndReset(); 817contentHash = hasher.GetHashAndReset();