Sample code for 30+ languages & platforms
Classic ASP

Extract PKCS7 from MIME and Decrypt

See more MIME Examples

Extracts the base64-encoded PKCS7 body of a MIME message to a file, and then decrypts using Chilkat Crypt2.

Chilkat Classic ASP Downloads

Classic ASP
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<%
success = 0

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

set mime = Server.CreateObject("Chilkat.Mime")

success = mime.LoadMimeFile("c:/aaworkarea/EmailInBytes.txt")
If (success <> 1) Then
    Response.Write "<pre>" & Server.HTMLEncode( mime.LastErrorText) & "</pre>"
    Response.End
End If

success = mime.SaveBody("c:/aaworkarea/smime.p7m")
If (success <> 1) Then
    Response.Write "<pre>" & Server.HTMLEncode( mime.LastErrorText) & "</pre>"
    Response.End
End If

set crypt = Server.CreateObject("Chilkat.Crypt2")

success = crypt.AddPfxSourceFile("c:/aaworkarea/my.pfx","pfxPassword")
If (success = 0) Then
    Response.Write "<pre>" & Server.HTMLEncode( crypt.LastErrorText) & "</pre>"
    Response.End
End If

' Indicate the public-key (PKCS7) encryption/decryption should be used:
crypt.CryptAlgorithm = "pki"

inPath = "c:/aaworkarea/smime.p7m"
outPath = "c:/aaworkarea/decrypted.dat"

success = crypt.CkDecryptFile(inPath,outPath)
If (success = 0) Then
    Response.Write "<pre>" & Server.HTMLEncode( crypt.LastErrorText) & "</pre>"
    Response.End
End If

Response.Write "<pre>" & Server.HTMLEncode( "Success.") & "</pre>"

%>
</body>
</html>