(Delphi ActiveX) Load Certificate from Smartcard in Reader (or from USB Token)
Demonstrates how to load the certificate that is on the smartcard currently inserted into the smartcard reader. (Also can load the smartcard on a USB token.)
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
cert: TChilkatCert;
success: Integer;
begin
cert := TChilkatCert.Create(Self);
// If you know the smart card PIN, set it prior to loading from the smartcard/USB token.
cert.SmartCardPin := '12345678';
// Pass an empty string to allow Chilkat to discover the smart card or USB token automatically.
success := cert.LoadFromSmartcard('');
if (success = 0) then
begin
Memo1.Lines.Add(cert.LastErrorText);
Exit;
end;
Memo1.Lines.Add('Cert loaded from smartcard: ' + cert.SubjectCN);
end;
|