CngKeyBlobFormat Class
Specifies a key BLOB format for use with Microsoft Cryptography Next Generation (CNG) objects.
Assembly: System.Core (in System.Core.dll)
| Name | Description | |
|---|---|---|
![]() | CngKeyBlobFormat(String^) | Initializes a new instance of the CngKeyBlobFormat class by using the specified format. |
| Name | Description | |
|---|---|---|
![]() ![]() | EccFullPrivateBlob | Gets a CngKeyBlobFormat object that specifies a private key BLOB for an elliptic curve cryptography (ECC) key which contains explicit curve parameters. |
![]() ![]() | EccFullPublicBlob | Gets a CngKeyBlobFormat object that specifies a public key BLOB for an elliptic curve cryptography (ECC) key which contains explicit curve parameters. |
![]() ![]() | EccPrivateBlob | Gets a CngKeyBlobFormat object that specifies a private key BLOB for an elliptic curve cryptography (ECC) key. |
![]() ![]() | EccPublicBlob | Gets a CngKeyBlobFormat object that specifies a public key BLOB for an elliptic curve cryptography (ECC) key. |
![]() | Format | Gets the name of the key BLOB format that the current CngKeyBlobFormat object specifies. |
![]() ![]() | GenericPrivateBlob | Gets a CngKeyBlobFormat object that specifies a generic private key BLOB. |
![]() ![]() | GenericPublicBlob | Gets a CngKeyBlobFormat object that specifies a generic public key BLOB. |
![]() ![]() | OpaqueTransportBlob | Gets a CngKeyBlobFormat object that specifies an opaque transport key BLOB. |
![]() ![]() | Pkcs8PrivateBlob | Gets a CngKeyBlobFormat object that specifies a Private Key Information Syntax Standard (PKCS #8) key BLOB. |
| Name | Description | |
|---|---|---|
![]() | Equals(CngKeyBlobFormat^) | Compares the specified CngKeyBlobFormat object to the current CngKeyBlobFormat object. |
![]() | Equals(Object^) | Compares the specified object to the current CngKeyBlobFormat object.(Overrides Object::Equals(Object^).) |
![]() | GetHashCode() | Generates a hash value for the embedded key BLOB format in the current CngKeyBlobFormat object.(Overrides Object::GetHashCode().) |
![]() | GetType() | |
![]() | ToString() | Gets the name of the key BLOB format that the current CngKeyBlobFormat object specifies.(Overrides Object::ToString().) |
| Name | Description | |
|---|---|---|
![]() ![]() | Equality(CngKeyBlobFormat^, CngKeyBlobFormat^) | Determines whether two CngKeyBlobFormat objects specify the same key BLOB format. |
![]() ![]() | Inequality(CngKeyBlobFormat^, CngKeyBlobFormat^) | Determines whether two CngKeyBlobFormat objects do not specify the same key BLOB format. |
The CngKeyBlobFormat class is a utility class. It consists of static properties, comparison methods, and a private, internally maintained string that specifies the key BLOB format name.
The static properties return CngKeyBlobFormat objects. Each object's internal string name is initialized to the key BLOB format name that corresponds to the name of the static property.
You can also use this class to create objects for key BLOB formats that are not covered by the static properties.
Several CNG classes (such as CngKey) accept CngKeyBlobFormat objects through a format parameter. When the class receives the CngKeyBlobFormat object, it retrieves the embedded name of the key BLOB format by calling the object's Format property.
Therefore, CngKeyBlobFormat serves as an enumeration of well-known key BLOB formats. It lets you identify a well-known key BLOB format by using a strongly typed value instead of a string.
Available since 3.5
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.



