Delphi ActiveX
Delphi ActiveX
Convert Certificate from DER to PEM.
See more Certificates Examples
Loads a digital certificate from any format, such as DER, and saves to PEM format.Chilkat Delphi ActiveX Downloads
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Chilkat_TLB;
...
procedure TForm1.Button1Click(Sender: TObject);
var
success: Integer;
cert: TChilkatCert;
begin
success := 0;
cert := TChilkatCert.Create(Self);
// LoadFromFile will load virtually any certificate format file.
// It will auto-recognize the format and load appropiately.
// In this case, load a DER format certificate and convert to PEM.
success := cert.LoadFromFile('qa_data/certs/testCert.cer');
if (success <> 1) then
begin
Memo1.Lines.Add(cert.LastErrorText);
Exit;
end;
success := cert.ExportCertPemFile('qa_data/certs/testCert.pem');
if (success <> 1) then
begin
Memo1.Lines.Add(cert.LastErrorText);
Exit;
end;
Memo1.Lines.Add('Converted certificate from DER to PEM format.');
end;