Chilkat HOME Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi DLL Go Java Node.js Objective-C PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(C) Find Certificate by Serial NumberSee more Cert Store ExamplesDemonstrates how to find a certificate having the specified hexadecimal serial number. Note: Requires Chilkat v10.1.2 or later.
#include <C_CkCertStore.h> #include <C_CkJsonObject.h> #include <C_CkCert.h> void ChilkatSample(void) { HCkCertStore certStore; const char *argNotUsed; BOOL success; const char *hexSerial; HCkJsonObject json; HCkCert cert; certStore = CkCertStore_Create(); // This example will search the certs on connected USB tokens and smartcards. argNotUsed = ""; success = CkCertStore_OpenSmartcard(certStore,argNotUsed); if (success == FALSE) { printf("%s\n",CkCertStore_lastErrorText(certStore)); CkCertStore_Dispose(certStore); return; } // Find the certificate having a serial number = "48FC93B46055948D36A7C98A89D69416". hexSerial = "48FC93B46055948D36A7C98A89D69416"; json = CkJsonObject_Create(); CkJsonObject_UpdateString(json,"serial",hexSerial); cert = CkCert_Create(); success = CkCertStore_FindCert(certStore,json,cert); if (success == TRUE) { // Show the serial number and subject CN printf("Found: %s, %s\n",CkCert_serialNumber(cert),CkCert_subjectCN(cert)); } else { printf("Not found.\n"); } CkCertStore_Dispose(certStore); CkJsonObject_Dispose(json); CkCert_Dispose(cert); } |
© 2000-2025 Chilkat Software, Inc. All Rights Reserved.