11 references to CngKeyBlobFormat
System.Core (11)
System\Security\Cryptography\CngKeyBlobFormat.cs (8)
105
s_eccPrivate = new
CngKeyBlobFormat
("ECCPRIVATEBLOB"); // BCRYPT_ECCPRIVATE_BLOB
117
s_eccPublic = new
CngKeyBlobFormat
("ECCPUBLICBLOB"); // BCRYPT_ECCPUBLIC_BLOB
129
s_eccFullPrivate = new
CngKeyBlobFormat
("ECCFULLPRIVATEBLOB"); // BCRYPT_ECCFULLPRIVATE_BLOB
141
s_eccFullPublic = new
CngKeyBlobFormat
("ECCFULLPUBLICBLOB"); // BCRYPT_ECCFULLPUBLIC_BLOB
153
s_genericPrivate = new
CngKeyBlobFormat
("PRIVATEBLOB"); // BCRYPT_PRIVATE_KEY_BLOB
165
s_genericPublic = new
CngKeyBlobFormat
("PUBLICBLOB"); // BCRYPT_PUBLIC_KEY_BLOB
177
s_opaqueTransport = new
CngKeyBlobFormat
("OpaqueTransport"); // NCRYPT_OPAQUETRANSPORT_BLOB
189
s_pkcs8Private = new
CngKeyBlobFormat
("PKCS8_PRIVATEKEY"); // NCRYPT_PKCS8_PRIVATE_KEY_BLOB
System\Security\Cryptography\RsaCng.cs (3)
17
private static CngKeyBlobFormat s_rsaFullPrivateBlob = new
CngKeyBlobFormat
(BCryptNative.KeyBlobType.RsaFullPrivateBlob);
18
private static CngKeyBlobFormat s_rsaPrivateBlob = new
CngKeyBlobFormat
(BCryptNative.KeyBlobType.RsaPrivateBlob);
19
private static CngKeyBlobFormat s_rsaPublicBlob = new
CngKeyBlobFormat
(BCryptNative.KeyBlobType.RsaPublicBlob);