1 write to Hkdf
System.Security.Cryptography (1)
src\libraries\Common\src\Interop\Unix\System.Security.Cryptography.Native\Interop.EVP.KdfAlgs.cs (1)
29Hkdf = EvpKdfFetch(HkdfAlgorithmName);
7 references to Hkdf
System.Security.Cryptography (7)
System\Security\Cryptography\HKDF.OpenSsl.cs (7)
10private static readonly bool s_hasOpenSslImplementation = Interop.Crypto.EvpKdfAlgs.Hkdf is not null; 21Debug.Assert(Interop.Crypto.EvpKdfAlgs.Hkdf is not null); 24Interop.Crypto.HkdfExtract(Interop.Crypto.EvpKdfAlgs.Hkdf, ikm, hashAlgorithmName.Name, salt, prk); 41Debug.Assert(Interop.Crypto.EvpKdfAlgs.Hkdf is not null); 44Interop.Crypto.HkdfExpand(Interop.Crypto.EvpKdfAlgs.Hkdf, prk, hashAlgorithmName.Name, info, output); 62Debug.Assert(Interop.Crypto.EvpKdfAlgs.Hkdf is not null); 66Interop.Crypto.EvpKdfAlgs.Hkdf,