Chilkat Examples

ChilkatHOME.NET Core C#Android™AutoItCC#C++Chilkat2-PythonCkPythonClassic ASPDataFlexDelphi ActiveXDelphi DLLGoJavaLianjaMono C#Node.jsObjective-CPHP ActiveXPHP ExtensionPerlPowerBuilderPowerShellPureBasicRubySQL ServerSwift 2Swift 3,4,5...TclUnicode CUnicode C++VB.NETVBScriptVisual Basic 6.0Visual FoxProXojo Plugin

Unicode C Examples

Web API Categories

ASN.1
AWS KMS
AWS Misc
Amazon EC2
Amazon Glacier
Amazon S3
Amazon S3 (new)
Amazon SES
Amazon SNS
Amazon SQS
Async
Azure Cloud Storage
Azure Key Vault
Azure Service Bus
Azure Table Service
Base64
Bounced Email
Box
CAdES
CSR
CSV
Certificates
Code Signing
Compression
DKIM / DomainKey
DNS
DSA
Diffie-Hellman
Digital Signatures
Dropbox
Dynamics CRM
EBICS
ECC
Ed25519
Email Object
Encryption
FTP
FileAccess
Firebase
GMail REST API
GMail SMTP/IMAP/POP
Geolocation
Google APIs
Google Calendar
Google Cloud SQL
Google Cloud Storage
Google Drive
Google Photos
Google Sheets
Google Tasks
Gzip
HTML-to-XML/Text
HTTP

HTTP Misc
IMAP
JSON
JSON Web Encryption (JWE)
JSON Web Signatures (JWS)
JSON Web Token (JWT)
Java KeyStore (JKS)
MHT / HTML Email
MIME
MS Storage Providers
Microsoft Graph
Misc
NTLM
OAuth1
OAuth2
OIDC
Office365
OneDrive
OpenSSL
Outlook
Outlook Calendar
Outlook Contact
PDF Signatures
PEM
PFX/P12
PKCS11
POP3
PRNG
REST
REST Misc
RSA
SCP
SCard
SFTP
SMTP
SSH
SSH Key
SSH Tunnel
ScMinidriver
SharePoint
SharePoint Online
Signing in the Cloud
Socket/SSL/TLS
Spider
Stream
Tar Archive
ULID/UUID
Upload
WebSocket
XAdES
XML
XML Digital Signatures
XMP
Zip
curl

 

 

 

(Unicode C) Load Certificate from Smart Card by Serial Number

See more Certificates Examples

This example requires Chilkat v9.5.0.87 or greater. It uses a Windows-only function named LoadFromSmartcard.

This example loads a certificate specified by its hexidecimal serial number. The LoadFromSmartcard method will examine the connected smart cards and USB tokens and will find and load the certificate having the specified serial number.

Chilkat C/C++ Library Downloads

MS Visual C/C++

Linux/CentOS C/C++

Alpine Linux C/C++

MAC OS X C/C++

armhf/aarch64 C/C++

C++ Builder

iOS C/C++

Android C/C++

Solaris C/C++

MinGW C/C++

#include <C_CkCertW.h>

void ChilkatSample(void)
    {
    HCkCertW cert;
    BOOL success;
    HCkCertW cert2;

    // This example requires the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    cert = CkCertW_Create();

    // To load the certificate specified by its hexidecimal serial number, pass the string "serial=<hexSerialNumber>".  For example:
    success = CkCertW_LoadFromSmartcard(cert,L"serial=4A1E6ADCF59DB1EFBAAE438D2C52664E40D16A87");
    if (success == FALSE) {
        wprintf(L"%s\n",CkCertW_lastErrorText(cert));
        wprintf(L"Certificate not loaded.\n");
        CkCertW_Dispose(cert);
        return;
    }

    wprintf(L"Found: %s serial=%s\n",CkCertW_subjectDN(cert),CkCertW_serialNumber(cert));

    // Here's another example.
    // Note: serial numbers can be of different lengths.  The length of the serial number depends on the certificate.
    cert2 = CkCertW_Create();
    success = CkCertW_LoadFromSmartcard(cert2,L"serial=66BE58138D761E92BC594A722932657BE26D421F");
    if (success == FALSE) {
        wprintf(L"%s\n",CkCertW_lastErrorText(cert2));
        wprintf(L"Certificate not loaded.\n");
        CkCertW_Dispose(cert);
        CkCertW_Dispose(cert2);
        return;
    }

    wprintf(L"Found: %s serial=%s\n",CkCertW_subjectDN(cert2),CkCertW_serialNumber(cert2));


    CkCertW_Dispose(cert);
    CkCertW_Dispose(cert2);

    }

 

© 2000-2024 Chilkat Software, Inc. All Rights Reserved.