PowerBuilder
PowerBuilder
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 PowerBuilder Downloads
integer li_rc
integer li_Success
oleobject loo_PrivKey
string ls_XmlText
li_Success = 0
// 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.
loo_PrivKey = create oleobject
li_rc = loo_PrivKey.ConnectToNewObject("Chilkat.PrivateKey")
if li_rc < 0 then
destroy loo_PrivKey
MessageBox("Error","Connecting to COM object failed")
return
end if
// The XML text of a private key (for example as produced by GetXml).
ls_XmlText = "<RSAKeyValue><Modulus>...</Modulus><Exponent>AQAB</Exponent>...</RSAKeyValue>"
li_Success = loo_PrivKey.LoadXml(ls_XmlText)
if li_Success = 0 then
Write-Debug loo_PrivKey.LastErrorText
destroy loo_PrivKey
return
end if
Write-Debug "Loaded a " + loo_PrivKey.KeyType + " private key."
destroy loo_PrivKey