10 references to HashSizeInBytes
System.Security.Cryptography (10)
src\libraries\Common\src\System\Security\Cryptography\RsaPaddingProcessor.cs (1)
90
digestLengthInBytes = SHA512.
HashSizeInBytes
;
System\Security\Cryptography\CryptographicOperations.cs (1)
782
return SHA512.
HashSizeInBytes
;
System\Security\Cryptography\SHA512.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.SHA512,
HashSizeInBytes
, source);
224
if (destination.Length <
HashSizeInBytes
)
System\Security\Cryptography\SHA512CryptoServiceProvider.cs (1)
29
Span<byte> destination = stackalloc byte[
HashSizeInBytes
];
System\Security\Cryptography\X509Certificates\RSAPssX509SignatureGenerator.cs (1)
50
cbSalt = SHA512.
HashSizeInBytes
;