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