12 references to CngBufferDescriptors
System.Security.Cryptography (12)
src\runtime\src\libraries\Common\src\Interop\Windows\BCrypt\Interop.Blobs.cs (1)
333internal CngBufferDescriptors BufferType; // Buffer type
src\runtime\src\libraries\Common\src\System\Security\Cryptography\ECCng.ImportExport.NamedCurve.cs (1)
162buff.BufferType = Interop.BCrypt.CngBufferDescriptors.NCRYPTBUFFER_ECC_CURVE_NAME;
src\runtime\src\libraries\Common\src\System\Security\Cryptography\SP800108HmacCounterKdfImplementationCng.cs (4)
7using CngBufferDescriptors = Interop.BCrypt.CngBufferDescriptors; 52buffers[0].BufferType = CngBufferDescriptors.KDF_LABEL; 55buffers[1].BufferType = CngBufferDescriptors.KDF_CONTEXT; 58buffers[2].BufferType = CngBufferDescriptors.KDF_HASH_ALGORITHM;
System\Security\Cryptography\HKDF.Windows.cs (2)
16using CngBufferDescriptors = Interop.BCrypt.CngBufferDescriptors; 200infoBuffer.BufferType = CngBufferDescriptors.KDF_HKDF_INFO;
System\Security\Cryptography\Pbkdf2Implementation.Windows.cs (4)
10using CngBufferDescriptors = Interop.BCrypt.CngBufferDescriptors; 157buffers[0].BufferType = CngBufferDescriptors.KDF_ITERATION_COUNT; 161buffers[1].BufferType = CngBufferDescriptors.KDF_SALT; 165buffers[2].BufferType = CngBufferDescriptors.KDF_HASH_ALGORITHM;