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)
285dataHash = hasher.GetHashAndReset(); 301byte[] dataHash = hasher.GetHashAndReset(); 310return hasher.GetHashAndReset();
System\Security\Cryptography\Pkcs\SignerInfo.cs (3)
698contentHash = hasher.GetHashAndReset(); 737attrHash = hasher.GetHashAndReset(); 794contentHash = hasher.GetHashAndReset();