Sample code for 30+ languages & platforms
VB.NET

Load a Private Key from XML Text

See more Private Key Examples

Demonstrates the Chilkat PrivateKey.LoadXml method, which loads a private key from XML text. The only argument is the XML string. Supported roots include RSAKeyValue, DSAKeyValue, ECCKeyValue, and Ed25519KeyValue.

Background: XML key representations such as RSAKeyValue come from the .NET/XML-DSIG world, where keys are exchanged as XML elements. This loads that form — the inverse of GetXml — which is handy for interoperating with .NET code or systems built around XML signatures. It is a plaintext format, so protect the XML like any unencrypted key material.

Chilkat VB.NET Downloads

VB.NET
Dim success As Boolean = False

'  Demonstrates the PrivateKey.LoadXml method, which loads a private key from XML text.  The only
'  argument is the XML string.  Supported roots include RSAKeyValue, DSAKeyValue, ECCKeyValue,
'  and Ed25519KeyValue.

Dim privKey As New Chilkat.PrivateKey

'  The XML text of a private key (for example as produced by GetXml).
Dim xmlText As String = "<RSAKeyValue><Modulus>...</Modulus><Exponent>AQAB</Exponent>...</RSAKeyValue>"

success = privKey.LoadXml(xmlText)
If (success = False) Then
    Debug.WriteLine(privKey.LastErrorText)
    Exit Sub
End If


Debug.WriteLine("Loaded a " & privKey.KeyType & " private key.")