Chilkat HOME ASP Visual Basic VB.NET C# Visual C++ C MFC Delphi FoxPro Java Perl PHP Python Ruby SQL Server VBScript
|
PVK to XMLConvert RSA .pvk (private key) to XML.
Dim pvk As New Chilkat.PrivateKey() Dim success As Boolean ' Password is "wiggy" success = pvk.LoadPvkFile("myKey.pvk","wiggy") If (success = false) Then TextBox1.Text = TextBox1.Text & pvk.LastErrorText & vbCrLf TextBox1.Refresh() Exit Sub End If ' Save it as XML: success = pvk.SaveXmlFile("myKey.xml") If (success = false) Then TextBox1.Text = TextBox1.Text & pvk.LastErrorText & vbCrLf TextBox1.Refresh() Exit Sub End If |
Need a specific example? Send a request to support@chilkatsoft.com
© 2000-2007 Chilkat Software, Inc. All Rights Reserved.