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

Chilkat2-Python 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
uncategorized

 

 

 

(Chilkat2-Python) Get Certificate Distinguished Name in .NET Format

See more Certificates Examples

Certificate distinguished names (DN's), in the real world, can be constructed in various ways. Some systems expect certain ways of doing things. This example demonstrates how to get a DN (or SimpleName) exactly as .NET would return it.

This example requires Chilkat v9.5.0.96.

Chilkat2 Python Downloads

Python Module for Windows, Linux, Alpine Linux, MacOS, Solaris

import sys
import chilkat2

cert = chilkat2.Cert()

success = cert.LoadFromFile("qa_data/certs/testCert.cer")
if (success == False):
    print(cert.LastErrorText)
    sys.exit()

# In 99% of all cases, Chilkat already returns the Distinguished Name in the identical format as .NET.
# 
# In most cases, (internal to the certificate) the ASN.1 for the certificate's Subject 
# contains a sesquence of OIDs and values, where each OID is the single item in a SET.
# For example:

# SEQUENCE (3 elem)
#       SET (1 elem)
#         SEQUENCE (2 elem)
#           OBJECT IDENTIFIER 2.5.4.6 countryName (X.520 DN component)
#           PrintableString FR
#       SET (1 elem)
#         SEQUENCE (2 elem)
#           OBJECT IDENTIFIER 2.5.4.12 title (X.520 DN component)
#           UTF8String Mdecin
#       SET (3 elem)
#         SEQUENCE (2 elem)
#           OBJECT IDENTIFIER 2.5.4.42 givenName (X.520 DN component)
#           UTF8String ALAIN
#       SET (3 elem)
#         SEQUENCE (2 elem)
#           OBJECT IDENTIFIER 2.5.4.4 surname (X.520 DN component)
#           UTF8String DUBOIS RPPS
#       SET (3 elem)
#         SEQUENCE (2 elem)
#           OBJECT IDENTIFIER 2.5.4.3 commonName (X.520 DN component)
#           UTF8String 389900098933

# If we look at the DN, we get this:
subjectDN = cert.SubjectDN
print(subjectDN)

# Chilkat produces this:
# C=FR, Title=Mdecin, G=ALAIN, SN=DUBOIS RPPS, CN=389900098933

# However, if the certificate's internal ASN.1 groups several items in a single SET,
# such as shown below, Microsoft .NET will produce a DN like this:
# G=ALAIN + SN=DUBOIS RPPS + CN=389900098933, T=Mdecin, C=FR

# Notice how the items in the SET are grouped with " + ".
# Also notice the order is reverse, and "T" is used instead of using "Title.
# These are all variations of how a DN might be formatted.
# In practice, there is no correct way because what is needed depends on what is
# required as input to whatever is receiving the DN.

# SEQUENCE (3 elem)
#       SET (1 elem)
#         SEQUENCE (2 elem)
#           OBJECT IDENTIFIER 2.5.4.6 countryName (X.520 DN component)
#           PrintableString FR
#       SET (1 elem)
#         SEQUENCE (2 elem)
#           OBJECT IDENTIFIER 2.5.4.12 title (X.520 DN component)
#           UTF8String Mdecin
#       SET (3 elem)
#         SEQUENCE (2 elem)
#           OBJECT IDENTIFIER 2.5.4.42 givenName (X.520 DN component)
#           UTF8String ALAIN
#         SEQUENCE (2 elem)
#           OBJECT IDENTIFIER 2.5.4.4 surname (X.520 DN component)
#           UTF8String DUBOIS RPPS
#         SEQUENCE (2 elem)
#           OBJECT IDENTIFIER 2.5.4.3 commonName (X.520 DN component)
#           UTF8String 389900098933

# To ensure Chilkat produces the same DN format as .NET, you can specify
# the keyword "DotNetSimpleName" in the UncommonOptions.
# For example:

cert.UncommonOptions = "DotNetSimpleName"

# If the above option is used (which was added in Chilkat v9.5.0.96), then Chilkat
# will produce the DN in the same format as .NET

subjectDN = cert.SubjectDN
print(subjectDN)

# Now Chilkat produces this:
# G=ALAIN + SN=DUBOIS RPPS + CN=389900098933, T=Mdecin, C=FR

 

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