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) PC/SC Get Card UIDSee more SCard ExamplesSends the APDU command to get a card's UID.
uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, BinData, SCard; ... procedure TForm1.Button1Click(Sender: TObject); var scard: HCkSCard; success: Boolean; bdRecv: HCkBinData; numBytes: Integer; begin // This example requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. scard := CkSCard_Create(); // First establish a context to the PC/SC Resource Manager success := CkSCard_EstablishContext(scard,'user'); if (success = False) then begin Memo1.Lines.Add(CkSCard__lastErrorText(scard)); Exit; end; // Use your own smart card reader name here. success := CkSCard_Connect(scard,'ACS ACR122 0','shared','no_preference'); if (success = False) then begin Memo1.Lines.Add(CkSCard__lastErrorText(scard)); Exit; end; Memo1.Lines.Add('Connected reader: ' + CkSCard__connectedReader(scard)); Memo1.Lines.Add('Active protocol: ' + CkSCard__activeProtocol(scard)); Memo1.Lines.Add('ATR: ' + CkSCard__cardAtr(scard)); Memo1.Lines.Add('Reader Status: ' + CkSCard__readerStatus(scard)); // Send the APDU command 0xFF, 0xCA, 0x00, 0x00, 0x00 bdRecv := CkBinData_Create(); success := CkSCard_TransmitHex(scard,CkSCard__activeProtocol(scard),'FFCA000000',bdRecv,32); if (success = True) then begin Memo1.Lines.Add('Received: ' + CkBinData__getEncoded(bdRecv,'hex')); // The UID is the returned data without the final 2 bytes. numBytes := CkBinData_getNumBytes(bdRecv); if (numBytes > 2) then begin Memo1.Lines.Add('UID: ' + CkBinData__getEncodedChunk(bdRecv,0,numBytes - 2,'hex')); end; end else begin Memo1.Lines.Add(CkSCard__lastErrorText(scard)); end; // Disconnect from this reader. success := CkSCard_Disconnect(scard,'leave'); if (success = False) then begin Memo1.Lines.Add(CkSCard__lastErrorText(scard)); end; // Applications should always release the context when finished. success := CkSCard_ReleaseContext(scard); if (success = False) then begin Memo1.Lines.Add(CkSCard__lastErrorText(scard)); end; CkSCard_Dispose(scard); CkBinData_Dispose(bdRecv); end; |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.