AsymmetricAlgorithm.ExportSubjectPublicKeyInfoPem Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Exports the public-key portion of the current key in the X.509 SubjectPublicKeyInfo format, PEM encoded.
public:
System::String ^ ExportSubjectPublicKeyInfoPem();
public string ExportSubjectPublicKeyInfoPem ();
member this.ExportSubjectPublicKeyInfoPem : unit -> string
Public Function ExportSubjectPublicKeyInfoPem () As String
Returns
A string containing the PEM-encoded X.509 SubjectPublicKeyInfo.
Exceptions
An implementation for ExportSubjectPublicKeyInfo() or TryExportSubjectPublicKeyInfo(Span<Byte>, Int32) has not been provided.
The key could not be exported.
Remarks
A PEM-encoded X.509 SubjectPublicKeyInfo will begin with
-----BEGIN PUBLIC KEY-----
and end with
-----END PUBLIC KEY-----
, with the base64 encoded DER
contents of the key between the PEM boundaries.
The PEM is encoded according to the IETF RFC 7468 "strict"
encoding rules.