Chilkat HOME Android™ Classic ASP C C++ C# Mono C# .NET Core C# C# UWP/WinRT DataFlex Delphi ActiveX Delphi DLL Visual FoxPro Java Lianja MFC Objective-C Perl PHP ActiveX PHP Extension PowerBuilder PowerShell PureBasic CkPython Chilkat2-Python Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ Visual Basic 6.0 VB.NET VB.NET UWP/WinRT VBScript Xojo Plugin Node.js Excel Go
(Excel) DSA Get Key as XMLGets the DSA key in XML format.
' This example requires the Chilkat API to have been previously unlocked. ' See Global Unlock Sample for sample code. Dim dsa As Chilkat.Dsa Set dsa = Chilkat.NewDsa ' Generate a new 2048 bit DSA key. success = dsa.GenKey(2048) If (success <> True) Then Debug.Print dsa.LastErrorText Exit Sub End If ' Get the public key as XML bPublicOnly = True xmlStr = dsa.ToXml(bPublicOnly) Debug.Print xmlStr ' Sample output. ' <DSAKeyValue> ' <P>wBYOKu...2eoXw==</P> ' <Q>1taJI7...kV2/9c=</Q> ' <G>qjfbTi...eB1+g==</G> ' <Y>t3tz...NqjsPEg==</Y> ' </DSAKeyValue> ' Get the private key as XML. bPublicOnly = False xmlStr = dsa.ToXml(bPublicOnly) Debug.Print xmlStr ' Sample output. ' <DSAKeyValue> ' <P>wBYOKu...2eoXw==</P> ' <Q>1taJI7...kV2/9c=</Q> ' <G>qjfbTi...eB1+g==</G> ' <Y>t3tz...NqjsPEg==</Y> ' <X>lm9F...XzuVO+qU=</X> ' </DSAKeyValue> |
© 2000-2022 Chilkat Software, Inc. All Rights Reserved.