Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(PowerBuilder) Generate ECDSA Key and Get Details as XMLDemonstrates how to generate an ECC key and gets the parts as XML.
integer li_rc oleobject loo_Ecc oleobject loo_Fortuna string ls_Entropy integer li_Success oleobject loo_PrivKey oleobject loo_Asn oleobject loo_Xml oleobject loo_Crypt string ls_PrivKeyHex // This requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. loo_Ecc = create oleobject // Use "Chilkat_9_5_0.Ecc" for versions of Chilkat < 10.0.0 li_rc = loo_Ecc.ConnectToNewObject("Chilkat.Ecc") if li_rc < 0 then destroy loo_Ecc MessageBox("Error","Connecting to COM object failed") return end if // Generate a random ECC private key on the secp256k1 curve. // Chilkat also supports other curves, such as secp384r1, secp521r1, and secp256r1. // Create a Fortuna PRNG and seed it with system entropy. // This will be our source of random data for generating the ECC private key. loo_Fortuna = create oleobject // Use "Chilkat_9_5_0.Prng" for versions of Chilkat < 10.0.0 li_rc = loo_Fortuna.ConnectToNewObject("Chilkat.Prng") ls_Entropy = loo_Fortuna.GetEntropy(32,"base64") li_Success = loo_Fortuna.AddEntropy(ls_Entropy,"base64") loo_PrivKey = loo_Ecc.GenEccKey("secp256k1",loo_Fortuna) if loo_Ecc.LastMethodSuccess <> 1 then Write-Debug loo_Ecc.LastErrorText destroy loo_Ecc destroy loo_Fortuna return end if // An EC private key has this ASN.1 // ECPrivateKey ::= SEQUENCE { // version INTEGER { ecPrivkeyVer1(1) } (ecPrivkeyVer1), // privateKey OCTET STRING, // parameters [0] ECParameters {{ NamedCurve }} OPTIONAL, // publicKey [1] BIT STRING OPTIONAL (This is the ANSI X9.63 public key format.) loo_Asn = create oleobject // Use "Chilkat_9_5_0.Asn" for versions of Chilkat < 10.0.0 li_rc = loo_Asn.ConnectToNewObject("Chilkat.Asn") li_Success = loo_Asn.LoadEncoded(loo_PrivKey.GetPkcs1ENC("base64"),"base64") if li_Success <> 1 then Write-Debug loo_Asn.LastErrorText destroy loo_Ecc destroy loo_Fortuna destroy loo_Asn return end if loo_Xml = create oleobject // Use "Chilkat_9_5_0.Xml" for versions of Chilkat < 10.0.0 li_rc = loo_Xml.ConnectToNewObject("Chilkat.Xml") loo_Xml.LoadXml(loo_Asn.AsnToXml()) Write-Debug loo_Xml.GetXml() // The XML looks like this: // <?xml version="1.0" encoding="utf-8" ?> // <sequence> // <int>01</int> // <octets>JgJvBG+3wletkJab8iXAkpz0O8/AgWZSpkYVcB7SpnU=</octets> // <contextSpecific tag="0" constructed="1"> // <oid>1.3.132.0.10</oid> // </contextSpecific> // </sequence> // The 32-byte private key is in the octets.. // Get it as hex. loo_Crypt = create oleobject // Use "Chilkat_9_5_0.Crypt2" for versions of Chilkat < 10.0.0 li_rc = loo_Crypt.ConnectToNewObject("Chilkat.Crypt2") ls_PrivKeyHex = loo_Crypt.ReEncode(loo_Xml.GetChildContent("octets"),"base64","hex") Write-Debug "EC private key as hex = " + ls_PrivKeyHex destroy loo_PrivKey destroy loo_Ecc destroy loo_Fortuna destroy loo_Asn destroy loo_Xml destroy loo_Crypt |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.