10 references to HashSizeInBytes
System.Security.Cryptography (10)
src\libraries\Common\src\System\Security\Cryptography\RsaPaddingProcessor.cs (1)
90digestLengthInBytes = SHA512.HashSizeInBytes;
System\Security\Cryptography\CryptographicOperations.cs (1)
782return SHA512.HashSizeInBytes;
System\Security\Cryptography\SHA512.cs (6)
64byte[] buffer = GC.AllocateUninitializedArray<byte>(HashSizeInBytes); 104if (destination.Length < HashSizeInBytes) 111Debug.Assert(bytesWritten == HashSizeInBytes); 139if (destination.Length < HashSizeInBytes) 166return LiteHashProvider.HashStream(HashAlgorithmNames.SHA512, HashSizeInBytes, source); 224if (destination.Length < HashSizeInBytes)
System\Security\Cryptography\SHA512CryptoServiceProvider.cs (1)
29Span<byte> destination = stackalloc byte[HashSizeInBytes];
System\Security\Cryptography\X509Certificates\RSAPssX509SignatureGenerator.cs (1)
50cbSalt = SHA512.HashSizeInBytes;