Chilkat Examples

ChilkatHOMEAndroid™Classic ASPCC++C#Mono C#.NET Core C#C# UWP/WinRTDataFlexDelphi ActiveXDelphi DLLVisual FoxProJavaLianjaMFCObjective-CPerlPHP ActiveXPHP ExtensionPowerBuilderPowerShellPureBasicCkPythonChilkat2-PythonRubySQL ServerSwift 2Swift 3,4,5...TclUnicode CUnicode C++Visual Basic 6.0VB.NETVB.NET UWP/WinRTVBScriptXojo PluginNode.jsExcelGo

C# UWP/WinRT Examples

Web API Categories

ASN.1
Amazon EC2
Amazon Glacier
Amazon S3
Amazon S3 (new)
Amazon SES
Amazon SNS
Amazon SQS
Azure Cloud Storage
Azure Service Bus
Azure Table Service
Base64
Bounced Email
Box
CAdES
CSR
CSV
Certificates
Compression
DKIM / DomainKey
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
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
Socket/SSL/TLS
Spider
Stream
Tar Archive
Upload
WebSocket
XAdES
XML
XML Digital Signatures
XMP
Zip
curl

 

 

 

(C# UWP/WinRT) 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.)

Note: This example requires Chilkat v9.5.0.77 or later.

Chilkat Universal Windows Platform (UWP) / WinRT Downloads

Chilkat for the Universal Windows Platform (UWP)

Chilkat.Cert cert = new Chilkat.Cert();

// To allow Chilkat to automatically choose a CSP,
// set the CSP name to the empty string.
string 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</li>
// MySmartLogon NFC CSP</li>
// NFC Connector Enterprise</li>
// ActivClient Cryptographic Service Provider</li>
// EnterSafe ePass2003 CSP v1.0</li>
// 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

bool success = cert.LoadFromSmartcard(cspName);
if (success == false) {
    Debug.WriteLine(cert.LastErrorText);
    return;
}

Debug.WriteLine("Cert loaded from smartcard: " + cert.SubjectCN);

// The CSP can be explicitly specified.  It can be a CSP in the list
// above, or any CSP that Chilkat does not yet know about..
cspName = "My Smartcard Vendor CSP";
success = cert.LoadFromSmartcard(cspName);
if (success == false) {
    Debug.WriteLine(cert.LastErrorText);
    return;
}


 

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