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