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
(C# UWP/WinRT) 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. Chilkat.Dsa dsa = new Chilkat.Dsa(); // Generate a new 2048 bit DSA key. bool success = dsa.GenKey(2048); if (success != true) { Debug.WriteLine(dsa.LastErrorText); return; } // Get the public key as XML bool bPublicOnly = true; string xmlStr = dsa.ToXml(bPublicOnly); Debug.WriteLine(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.WriteLine(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.