5 references to GetHashDigestLength
Microsoft.AspNetCore.Cryptography.Internal.Tests (2)
Cng\CachedAlgorithmHandlesTests.cs (2)
140Assert.Equal(expectedDigestSizeInBytes, algorithmHandle.GetHashDigestLength()); 171Assert.Equal(expectedDigestSizeInBytes, algorithmHandle.GetHashDigestLength());
Microsoft.AspNetCore.Cryptography.KeyDerivation (1)
PBKDF2\Win8Pbkdf2Provider.cs (1)
135uint cbPasswordDigest = prfAlgorithmHandle.GetHashDigestLength();
Microsoft.AspNetCore.DataProtection (2)
AuthenticatedEncryption\CngCbcAuthenticatedEncryptorFactory.cs (1)
93uint digestSize = algorithmHandle.GetHashDigestLength();
Cng\CbcAuthenticatedEncryptor.cs (1)
48_hmacAlgorithmDigestLengthInBytes = hmacAlgorithmHandle.GetHashDigestLength();