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
(DataFlex) Duplicate openssl pkey -in private.pem -pubout -out pubkey.pemHow to output the public part of a private key: Demonstrates how to duplicate this OpenSSL command: openssl pkey -in private.pem -pubout -out pubkey.pem
Use ChilkatAx-win32.pkg Procedure Test Handle hoPkey Boolean iSuccess Variant vPubKey Handle hoPubKey String sTemp1 Boolean bTemp1 Get Create (RefClass(cComChilkatPrivateKey)) To hoPkey If (Not(IsComObjectCreated(hoPkey))) Begin Send CreateComObject of hoPkey End // Load the private key from an PEM file: Get ComLoadPemFile Of hoPkey "private.pem" To iSuccess If (iSuccess <> True) Begin Get ComLastErrorText Of hoPkey To sTemp1 Showln sTemp1 Procedure_Return End Get ComGetPublicKey Of hoPkey To vPubKey If (IsComObject(vPubKey)) Begin Get Create (RefClass(cComChilkatPublicKey)) To hoPubKey Set pvComObject Of hoPubKey To vPubKey End Get ComLastMethodSuccess Of hoPkey To bTemp1 If (bTemp1 = False) Begin Get ComLastErrorText Of hoPkey To sTemp1 Showln sTemp1 Procedure_Return End Get ComSavePemFile Of hoPubKey False "pubKey.pem" To iSuccess If (iSuccess <> True) Begin Get ComLastErrorText Of hoPubKey To sTemp1 Showln sTemp1 Send Destroy of hoPubKey Procedure_Return End Showln "Success." Send Destroy of hoPubKey End_Procedure |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.