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
(Node.js) Open Smartcard Certificate Store (or from USB Token)Demonstrates how to open the certificate store of the smart card currently in the reader (or the USB token). Iterates over the certs found on the smartcard. Note: This example requires Chilkat v9.5.0.80 or later.
var os = require('os'); if (os.platform() == 'win32') { if (os.arch() == 'ia32') { var chilkat = require('@chilkat/ck-node21-win-ia32'); } else { var chilkat = require('@chilkat/ck-node21-win64'); } } else if (os.platform() == 'linux') { if (os.arch() == 'arm') { var chilkat = require('@chilkat/ck-node21-arm'); } else if (os.arch() == 'x86') { var chilkat = require('@chilkat/ck-node21-linux32'); } else { var chilkat = require('@chilkat/ck-node21-linux64'); } } else if (os.platform() == 'darwin') { if (os.arch() == 'arm64') { var chilkat = require('@chilkat/ck-node21-mac-m1'); } else { var chilkat = require('@chilkat/ck-node21-macosx'); } } function chilkatExample() { var certStore = new chilkat.CertStore(); // To allow Chilkat to automatically choose a CSP, // set the CSP name to the empty string. var cspName = ""; // Chilkat will choose the 1st 3rd party CSP in the following list // that it finds on the system. If no 3rd party CSP is found, then // the "Microsoft Base Smart Card Crypto Provider" is automatically chosen // // Bit4id Universal Middleware Provider // eToken Base Cryptographic Provider // FTSafe ePass1000 RSA Cryptographic Service Provider // EnterSafe ePass2003 CSP v2.0 // Gemalto Classic Card CSP // PROXKey CSP India V1.0 // PROXKey CSP India V2.0 // TRUST KEY CSP V1.0 // Watchdata Brazil CSP V1.0 // Luna Cryptographic Services for Microsoft Windows // Luna SChannel Cryptographic Services for Microsoft Windows // Safenet RSA Full Cryptographic Provider // nCipher Enhanced Cryptographic Provider // SafeSign Standard Cryptographic Service Provider // SafeSign Standard RSA and AES Cryptographic Service Provider // MySmartLogon NFC CSP // NFC Connector Enterprise // ActivClient Cryptographic Service Provider // EnterSafe ePass2003 CSP v1.0 // Athena ASECard Crypto CSP" // To get the list of CSP's on your system, see this example: // List Cryptographic Service Providers (CSP's) on a Windows System // Access the certificates on the smart card via the Chilkat certificate store class. var success = certStore.OpenSmartcard(cspName); if (success == false) { console.log(certStore.LastErrorText); return; } // Iterate over certificates on the smartcard. var i = 0; var numCerts = certStore.NumCertificates; console.log("numCerts = " + numCerts); while ((i < numCerts)) { // cert: Cert var cert = certStore.GetCertificate(i); console.log(cert.SubjectCN); i = i+1; } } chilkatExample(); |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.