Visual Basic Examples

ChilkatHOMEAndroid™ASPVisual BasicVB.NETC#iOS (IPhone)Objective-CC++CUnicode C++Unicode CMFCDelphi DLLDelphi ActiveXFoxProJavaPerlPHP ExtensionPHP ActiveXPythonPowerShellRubySQL ServerVBScript

VB Examples

Bounced Mail
Bz2
Character Encoding
CSV
Digital Certificates
Digital Signatures
Email
FTP
HTML Conversion
HTTP
IMAP
Encryption
MHT / HTML Email
POP3
RSA
S/MIME
SFTP
SMTP
Socket
Spider
SSH
SSH Key
SSH Tunnel
String
Tar
Upload
XML
XMP
Zip Compression

More Examples...
Amazon S3
Email Object
DKIM / DomainKey
NTLM
DH Key Exchange
DSA
FileAccess
RSS
Atom
Self-Extractor
Service
Bzip2
PPMD
Deflate
LZW


VB Strings
VB Byte Array

 

 

 

 

 

 

 

Export Certificate and Private Key to PFX

Demonstrates how to export a digital certificate, it's private key, and potentially all certificates in the chain of authentication to a PFX file.

Dim success As Long

'  This object is used to create a certificate store object.
Dim ccs As New ChilkatCreateCS

Dim certStore As ChilkatCertStore
'  Open the local machine certificate store read-only.
ccs.ReadOnly = 1
Set certStore = ccs.OpenLocalSystemStore()

'  Can we find a certificate by email address?
Dim cert As ChilkatCert
Set cert = certStore.FindCertBySubjectE("admin@chilkatsoft.com")
If (cert Is Nothing ) Then
    '  Open the current-user certificate store and check it instead.

    Text1.Text = Text1.Text & "Checking current-user certificate store..." & vbCrLf
    Text1.Refresh

    Set certStore = ccs.OpenCurrentUserStore()

    Set cert = certStore.FindCertBySubjectE("admin@chilkatsoft.com")
    If (cert Is Nothing ) Then
        Text1.Text = Text1.Text & "Failed to find certificate!" & vbCrLf
        Text1.Refresh
        Exit Sub
    End If

End If

'  Does this certificate have a private key accessible
'  to the calling process?  Private keys are *not* stored
'  within the certificate store.  Private keys are stored
'  in a key container in a Windows protected store.  It
'  can be one of two protected stores: the protected store for
'  the current logged-in user account, or the "machine-key"
'  protected store.  The private key must both exist in a
'  protected store, and the process must have permission to
'  access it...

'  You can only export to a PFX if the private key exists
'  and is accessible.

If (cert.HasPrivateKey() = 1) Then

    '  Export to a PFX.
    '  Provide a password that will be required whenever the PFX is opened.
    '  Also, include all certs in the chain of authentication.
    Dim bIncludeChain As Long
    bIncludeChain = 1
    success = cert.ExportToPfxFile("myCert.pfx","myPassword",bIncludeChain)
    If (success <> 1) Then
        Text1.Text = Text1.Text & cert.LastErrorText & vbCrLf
        Text1.Refresh
    Else
        Text1.Text = Text1.Text & "Exported to PFX!" & vbCrLf
        Text1.Refresh
    End If

Else
    Text1.Text = Text1.Text & "Certificate does not have a private key available" & vbCrLf
    Text1.Refresh
End If

'  The Chilkat Certificate, Certificate Store, Private Key,
'  Public Key, and Key Container classes / objects are freeware.

'  They are used by and included with the Chilkat Email,
'  Crypt, S/MIME, and other commercial Chilkat components.

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