FoxPro Examples

ChilkatHOMEASPVisual BasicVB.NETC#Visual C++CMFCDelphiFoxProJavaPerlPHPPythonRubySQL ServerVBScript

Visual FoxPro Examples

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

More Examples...
Email Object
POP3
SMTP
RSS
Atom
Byte Array

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

 

Non-Chilkat Links
Text and String Handling

RSA Encrypting Symmetric Secret Key

The RSA encryption algorithm is computationally expensive. It is not the best choice for encrypting large amounts of data. Symmetric encryption algorithms such as AES (i.e. Rijndael) or Blowfish are much more efficient. A typical application scenario is that you want to send encrypted messages to a partner, but you don't want to send the symmetric key unprotected. A solution is to generate a public/private RSA key pair and provide your partner with the public key (in advance). You may then encrypt the symmetric algorithm's key using the RSA private key. Next, encrypt the message using the symmetric algorithm, and send your partner both the encrypted key and encrypted message. Your partner decrypts by first RSA decrypting the key, and then using it to decrypt the message. One typical use of the RSA algorithm is to encrypt a symmetric encryption algorithm key so that it can be sent to

Download Chilkat RSA Public-Key Encryption ActiveX

Download Chilkat Crypt ActiveX

LOCAL loRsa
LOCAL lnSuccess
LOCAL loCrypt
LOCAL lcXmlKey
LOCAL lcSecretKey
LOCAL lnBUsePrivateKey
LOCAL lcEncryptedKey
LOCAL lcEncryptedText
LOCAL lcDecryptedKey
LOCAL loCrypt2
LOCAL lcDecryptedText

loRsa = CreateObject('Chilkat.Rsa')

lnSuccess = loRsa.UnlockComponent("Anything for 30-day trial")
IF (lnSuccess <> 1) THEN
    =MESSAGEBOX("RSA component unlock failed")
    QUIT
ENDIF

loCrypt = CreateObject('Chilkat.Crypt2')

lnSuccess = loCrypt.UnlockComponent("Anything for 30-day trial")
IF (lnSuccess <> 1) THEN
    =MESSAGEBOX("Crypt component unlock failed")
    QUIT
ENDIF

*  Load a public/private key pair from a .snk key file.
*  Assume you have already provided your partner with
*  the public key part of the key pair.

lcXmlKey = loRsa.SnkToXml("chilkat2.snk")

*  Alternatively, you may generate a public/private key pair
*  by calling GenerateKey (as shown in the commented-out line
*  below).  If you do this, comment out the lines that call
*  ImportPrivateKey and ImportPublicKey.
* success = rsa.GenerateKey(2048);

*  Import the private key into the RSA instance.
loRsa.ImportPrivateKey(lcXmlKey)

*  Our message data will be encrypted using 128-bit AES
*  encryption, using CBC (cipher-block chaining).
loCrypt.CryptAlgorithm = "aes"
loCrypt.CipherMode = "cbc"
loCrypt.KeyLength = 128

*  Generate a 128-bit secret key from a passphrase and return it as a hex string.

lcSecretKey = loCrypt.GenEncodedSecretKey("secret","hex")
? "Unencrypted Key: " + lcSecretKey

*  Use the key we generated:
loCrypt.SetEncodedKey(lcSecretKey,"hex")

*  RSA encrypt the secret key and return as a hex string:
loRsa.EncodingMode = "hex"

lnBUsePrivateKey = 0

lcEncryptedKey = loRsa.EncryptStringENC(lcSecretKey,lnBUsePrivateKey)

*  Symmetric encrypt a message.  For this example the message
*  is very short, but typically this is where a large amount
*  of data may be encrypted.
loCrypt.EncodingMode = "base64"

lcEncryptedText = loCrypt.EncryptStringENC("Hello World!")

*  Show our encrypted key and encrypted text:
? "Encrypted Key: " + lcEncryptedKey
? "Encrypted Text: " + lcEncryptedText

*  Assume we sent these strings to our partner...

*  Here's what we do at the partner end:
loRsa.ImportPublicKey(lcXmlKey)

*  First, decrypt the encryptedKey:
lnBUsePrivateKey = 1

lcDecryptedKey = loRsa.DecryptStringENC(lcEncryptedKey,lnBUsePrivateKey)
? "Decrypted Key: " + lcDecryptedKey

*  Set our crypt object's properties and secret key:
loCrypt2 = CreateObject('Chilkat.Crypt2')
loCrypt2.CryptAlgorithm = "aes"
loCrypt2.CipherMode = "cbc"
loCrypt2.KeyLength = 128
loCrypt2.EncodingMode = "base64"
loCrypt2.SetEncodedKey(lcDecryptedKey,"hex")

*  Decrypt the message:

lcDecryptedText = loCrypt2.DecryptStringENC(lcEncryptedText)
? "Decrypted Text: " + lcDecryptedText

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

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

Mail Component · .NET Email Component · ASP Mail Component · XML Parser