ASP Examples

ChilkatHOMEASPVisual BasicVB.NETC#Visual C++CMFCDelphiFoxProJavaPerlPHPPythonRubySQL ServerVBScript

ASP Examples

ASP String
ASP Byte Array
Bounced Mail
Character Encoding
Digital Certificates
Digital Signatures
Email
FTP
HTML-to-XML
HTTP
IMAP
Encryption
MHT / HTML Email
S/MIME
Socket
Spider
RSA Encryption
Tar
ASP Upload
XML
XMP
Zip Compression

More Examples...
Email Object
POP3
SMTP
RSS
Atom
Self-Extractor

Unreleased...
Service
PPMD
Deflate
Bzip2
LZW
Bz2
DH Key Exchange
DSA
Icon

 

 

 

 

 

 

Use Certificate and Private Key PEM Files to Create a Digital Signature

Demonstrates how to load a digital certificate from a PEM file, load it's corresponding private key from a PEM file, save the private key to a key container (if necessary), link the certificate to the key container, and use it to create a digital signature.

Download Chilkat Crypt ActiveX

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<%
set cert = Server.CreateObject("Chilkat.Cert")

'  Load the cert from a PEM file;
cert.LoadFromFile "cert.pem"

set pkey = Server.CreateObject("Chilkat.PrivateKey")

'  Load the private key from an RSA PEM file:
pkey.LoadPemFile "pkey_rsa.pem"

'  If the "chilkat" key container does not already exist,
'  we'll create it and import the private key:
set container = Server.CreateObject("Chilkat.KeyContainer")
needPrivateKeyAccess = 1
machineKeyset = 0
If (container.OpenContainer("chilkat",needPrivateKeyAccess,machineKeyset) = 0) Then

    '  We need to create the key container and import
    '  the private key:
    success = container.CreateContainer("chilkat",machineKeyset)
    If (success = 1) Then
        isKeyExchangePair = 0
        success = container.ImportPrivateKey(pkey,isKeyExchangePair)
        If (success = 0) Then
            Response.Write "Failed to import private key into key container" & "<br>"

        End If

    Else
        Response.Write "Failed to create key container" & "<br>"

    End If

End If

'  At this point, the key container contains the private key.
'  Link the certificate with the key container:
bForSigning = 1
success = cert.LinkPrivateKey("chilkat",machineKeyset,bForSigning)
If (success = 0) Then
    Response.Write "Failed to link certificate with key container" & "<br>"

End If

'  Use Chilkat Crypt (a non-freeware component) to create
'  a digital signature using the certificate w/ private key:
set crypt = Server.CreateObject("Chilkat.Crypt2")

'  Any string argument automatically begins the 30-day trial.
success = crypt.UnlockComponent("30-day trial")
If (success <> 1) Then
    Response.Write "Crypt component unlock failed" & "<br>"

End If

'  Tell the crypt component to use this cert.
crypt.SetSigningCert cert

'  We can sign any type of file, creating a .p7s as output:
success = crypt.CreateP7S("license.rtf","license.p7s")
If (success = 0) Then
    Response.Write crypt.LastErrorText & "<br>"

End If

Response.Write crypt.LastErrorText & "<br>"

'  Verify and restore the original file:
crypt.SetVerifyCert cert

success = crypt.VerifyP7S("license.rtf","license.p7s")
If (success = 0) Then
    Response.Write crypt.LastErrorText & "<br>"

End If

Response.Write "Success!" & "<br>"

'  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.

%>
</body>
</html>

 

Need a specific example? Send a request to support@chilkatsoft.com

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