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) Get TLS Server's SPKI Fingerprint

Gets the SPKI fingerprint of a TLS server.

What is Pinning?

Pinning is the process of associating a host with their expected X509 certificate or public key. Once a certificate or public key is known or seen for a host, the certificate or public key is associated or 'pinned' to the host. If more than one certificate or public key is acceptable, then the program holds a pinset. In this case, the advertised identity must match one of the elements in the pinset. A host or service's certificate or public key can be added to an application at development time, or it can be added upon first encountering the certificate or public key. The former - adding at development time - is preferred since preloading the certificate or public key out of band usually means the attacker cannot taint the pin. ..

Beginning in Chilkat v9.5.0.55, TLS public key pinning is implemented by (1) making it possible to easily get the SPKI fingerprint of a certificate, and (2) adding the TlsPinSet property to classes that can establish TLS connections.

Chilkat Universal Windows Platform (UWP) / WinRT Downloads

Chilkat for the Universal Windows Platform (UWP)

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

Chilkat.Socket tlsSock = new Chilkat.Socket();

// Establish a TLS connection with any remote TLS server.
// The type of server could be anything: HTTP, IMAP, SMTP, FTP, POP3, etc.
// as long as it is TLS (i.e. it connects implicitly using TLS).
bool bConnectUsingTls = true;
int maxWaitMs = 5000;
bool success = await tlsSock.ConnectAsync("imap.gmail.com",993,bConnectUsingTls,maxWaitMs);
if (success != true) {
    Debug.WriteLine(tlsSock.LastErrorText);
    return;
}

// Get the server certificate.
Chilkat.Cert cert = tlsSock.GetSslServerCert();
if (tlsSock.LastMethodSuccess == false) {
    Debug.WriteLine(tlsSock.LastErrorText);
    return;
}

// The GetSpkiFingerprint method returns the SPKI Fingerprint suitable for use in pinning.
//  (See RFC 7469.)  An SPKI Fingerprint is defined as the output of a known cryptographic hash
//  algorithm whose input is the DER-encoded ASN.1 representation of  the Subject Public Key Info
// (SPKI) of an X.509 certificate.  The first argument specifies the hash algorithm and may be
// "sha256", "sha384", "sha512", "sha1", "md2", "md5", "haval", "ripemd128", 
// "ripemd160","ripemd256", or "ripemd320".   
// The second argument specifies the encoding, and may be "base64", "hex", 
// or any of the encoding modes specified at http://www.cknotes.com/chilkat-binary-encoding-list/
// DN = "Distinguished Name"
Debug.WriteLine("SPKI Fingerprint: " + cert.GetSpkiFingerprint("sha256","base64"));


 

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