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
(Delphi DLL) ZATCA Load Certificate and Private Key from PEM FilesSee more ZATCA ExamplesDemonstrates how to load a certificate and private key from a pair of PEM files.
uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Cert, PrivateKey; ... procedure TForm1.Button1Click(Sender: TObject); var cert: HCkCert; success: Boolean; privKey: HCkPrivateKey; begin // The LoadFromFile method will automatically detect the file format.. cert := CkCert_Create(); success := CkCert_LoadFromFile(cert,'qa_data/zatca/cert.pem'); if (success <> True) then begin Memo1.Lines.Add(CkCert__lastErrorText(cert)); Exit; end; Memo1.Lines.Add(CkCert__subjectCN(cert)); // Load the private key. privKey := CkPrivateKey_Create(); success := CkPrivateKey_LoadPemFile(privKey,'qa_data/zatca/ec-secp256k1-priv-key.pem'); if (success <> True) then begin Memo1.Lines.Add(CkPrivateKey__lastErrorText(privKey)); Exit; end; Memo1.Lines.Add('Key Type: ' + CkPrivateKey__keyType(privKey)); // Associate the private key with the certificate. success := CkCert_SetPrivateKey(cert,privKey); if (success <> True) then begin Memo1.Lines.Add(CkCert__lastErrorText(cert)); Exit; end; Memo1.Lines.Add('Success.'); CkCert_Dispose(cert); CkPrivateKey_Dispose(privKey); end; |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.