1 type derived from SHA3_384
System.Security.Cryptography (1)
System\Security\Cryptography\SHA3_384.cs (1)
231private sealed class Implementation : SHA3_384
11 references to SHA3_384
System.Security.Cryptography (11)
src\runtime\src\libraries\Common\src\System\Security\Cryptography\RsaPaddingProcessor.cs (1)
96digestLengthInBytes = SHA3_384.HashSizeInBytes;
System\Security\Cryptography\CryptographicOperations.cs (1)
1123return SHA3_384.HashSizeInBytes;
System\Security\Cryptography\HashProviderDispenser.Windows.cs (1)
244digestSizeInBytes = SHA3_384.HashSizeInBytes;
System\Security\Cryptography\HKDF.Windows.cs (1)
93(hashAlgorithmName == HashAlgorithmName.SHA3_384 && !SHA3_384.IsSupported) ||
System\Security\Cryptography\HMACCommon.cs (2)
87Debug.Assert(SHA3_384.IsSupported); 88modifiedKey = SHA3_384.HashData(key);
System\Security\Cryptography\IncrementalHash.cs (1)
459case HashAlgorithmNames.SHA3_384 when !SHA3_384.IsSupported:
System\Security\Cryptography\SHA3_384.cs (4)
39/// Initializes a new instance of <see cref="SHA3_384" />. 55/// Creates an instance of the default implementation of <see cref="SHA3_384" />. 58/// A new instance of <see cref="SHA3_384" />. 63public static new SHA3_384 Create()