Sample code for 30+ languages & platforms
Visual FoxPro

Set the Decryption Certificate and Private Key

See more POP3 Examples

Demonstrates the Chilkat MailMan.SetDecryptCert2 method, which explicitly specifies both the certificate and its associated private key, as separate objects, to use when decrypting S/MIME encrypted email. This example loads a .cer certificate and a PEM private key, registers both, and fetches a message Chilkat can decrypt.

Background: Credentials are not always packaged together. When the certificate is a standalone .cer and the private key is a separate PEM (or other) file, SetDecryptCert2 takes the two objects individually. It is the two-object counterpart to SetDecryptCert, which expects a single certificate that already carries its private key (such as one loaded from a PFX).

Chilkat Visual FoxPro Downloads

Visual FoxPro
LOCAL lnSuccess
LOCAL loMailman
LOCAL loCert
LOCAL loPrivKey
LOCAL loEmail

lnSuccess = 0

*  Demonstrates the MailMan.SetDecryptCert2 method, which explicitly specifies both the
*  certificate and its associated private key (as separate objects) to use when decrypting
*  S/MIME encrypted email.

loMailman = CreateObject('Chilkat.MailMan')

*  Configure the POP3 server connection.
loMailman.MailHost = "pop.example.com"
loMailman.MailPort = 995
loMailman.PopSsl = 1
loMailman.PopUsername = "user@example.com"
loMailman.PopPassword = "myPassword"

*  Load the certificate (public) and the matching private key from separate files.
loCert = CreateObject('Chilkat.Cert')
lnSuccess = loCert.LoadFromFile("qa_data/certs/recipient.cer")
IF (lnSuccess = 0) THEN
    ? loCert.LastErrorText
    RELEASE loMailman
    RELEASE loCert
    CANCEL
ENDIF

loPrivKey = CreateObject('Chilkat.PrivateKey')
lnSuccess = loPrivKey.LoadPemFile("qa_data/certs/recipient_privkey.pem")
IF (lnSuccess = 0) THEN
    ? loPrivKey.LastErrorText
    RELEASE loMailman
    RELEASE loCert
    RELEASE loPrivKey
    CANCEL
ENDIF

*  Specify the certificate and private key to use when decrypting downloaded email.
lnSuccess = loMailman.SetDecryptCert2(loCert,loPrivKey)
IF (lnSuccess = 0) THEN
    ? loMailman.LastErrorText
    RELEASE loMailman
    RELEASE loCert
    RELEASE loPrivKey
    CANCEL
ENDIF

*  Fetch a message; if it is encrypted, Chilkat decrypts it using the certificate and key.
loEmail = CreateObject('Chilkat.Email')
lnSuccess = loMailman.FetchOne(0,0,1,loEmail)
IF (lnSuccess = 0) THEN
    ? loMailman.LastErrorText
    RELEASE loMailman
    RELEASE loCert
    RELEASE loPrivKey
    RELEASE loEmail
    CANCEL
ENDIF

? "Decrypted = " + STR(loEmail.Decrypted)

*  Note: Paths such as "qa_data/..." are relative local filesystem paths,
*  relative to the current working directory of the running application.

*  Note: Explicitly connecting/authenticating is optional.  Chilkat MailMan automatically
*  connects and authenticates -- using the property settings above -- whenever a server
*  operation requires it.  Calling the explicit connect/authenticate methods can still be
*  helpful to determine whether a failure occurs while connecting or while authenticating.

RELEASE loMailman
RELEASE loCert
RELEASE loPrivKey
RELEASE loEmail