Skip to content

Latest commit

 

History

History
53 lines (34 loc) · 1.69 KB

cryptographicpublickeyblobtype.md

File metadata and controls

53 lines (34 loc) · 1.69 KB
-api-id -api-type
T:Windows.Security.Cryptography.Core.CryptographicPublicKeyBlobType
winrt enum

CryptographicPublicKeyBlobType

-description

Specifies the type of the public key contained in a buffer.

-enum-fields

-field X509SubjectPublicKeyInfo:0

This is the default value. The public key is encoded as an ASN.1 SubjectPublicKeyInfo type defined in RFC 5280 and RFC 3280.

SubjectPublicKeyInfo  ::=  SEQUENCE  {
    algorithm            AlgorithmIdentifier,
    subjectPublicKey     BIT STRING  }

-field Pkcs1RsaPublicKey:1

The key is an RSA public key defined in the PKCS #1 standard. For more information, see the RSA Cryptography Specification in RFC 3347.

-field BCryptPublicKey:2

Microsoft public key format defined by Cryptography API: Next Generation (CNG). For examples, see the following CNG structures:

-field Capi1PublicKey:3

Microsoft public key format defined by the legacy Cryptography API (CAPI). For more information, see Base Provider Key BLOBs.

-field BCryptEccFullPublicKey:4

The key is a BCrypt full elliptic curve cryptography (ECC) private key.

-remarks

-examples

-see-also