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