Programming Examples

ChilkatHOMEAndroid™ASPVisual BasicVB.NETC#iOS (IPhone)Objective-CC++CMFCDelphiFoxProJavaPerl
PHP ExtensionPHP ActiveXPythonPowerShellRubySQL ServerVBScript

C Examples

Bounced Mail
Bz2
Certificates/Keys
Charset
CSV
DKIM / DomainKey
Diffie-Hellman
DSA
Email Object
Encryption
FileAccess
FTP
HTML Conversion
HTTP
IMAP
MHT / HTML Email
MIME
NTLM
POP3
RSA
SMTP
Socket
Spider
SSH Key
SSH
SSH Tunnel
SFTP
Tar
Upload
XML
Zip
Amazon S3

 

 

 

 

 

 

 

 

RSA Encrypt/Decrypt AES Key

Demonstrates how to use RSA to protect a key for AES encryption. It can be used in this scenario: You will provide your RSA public key to any number of counterparts. Your counterpart will generate an AES key, encrypt data (or a file) using it, then encrypt the AES key using your RSA public key. Your counterpart sends you both the encrypted data and the encrypted key. Since you are the only one with access to the RSA private key, only you can decrypt the AES key. You decrypt the key, then decrypt the data using the AES key.

This example will show the entire process. (1) Generate an RSA key and save both private and public parts to PEM files. (2) Encrypt a file using a randomly generated AES encryption key. (3) RSA encrypt the AES key. (4) RSA decrypt the AES key. (5) Use it to AES decrypt the file or data.

Downloads:

MS Windows Visual C/C++ Libraries
Linux/CentOS C/C++ Libraries
MAC OS X C/C++ Libraries
Solaris C/C++ Libraries
C++ Builder Libraries
FreeBSD C++ Libraries
HP-UX C++ Libraries
BlackBerry QNX C++ Libraries
#include <C_CkRsa.h>
#include <C_CkPublicKey.h>
#include <C_CkPrivateKey.h>
#include <C_CkCrypt2.h>

void ChilkatSample(void)
    {
    HCkRsa rsa;
    BOOL success;
    const char * pubKeyXml;
    HCkPublicKey pubKey;
    const char * privKeyXml;
    HCkPrivateKey privKey;
    HCkCrypt2 crypt;
    const char * randomKey;
    HCkRsa rsa2;
    HCkPublicKey pubKey2;
    BOOL bUsePrivateKey;
    const char * encryptedAesKey;
    HCkRsa rsa3;
    HCkPrivateKey privKey2;
    const char * decryptedAesKey;
    HCkCrypt2 crypt2;

    // 
    //   This example requires two Chilkat licenses:  RSA and Crypt.
    // 

    //  ------------------
    //  Step 1.  Generate an RSA key and save to PEM files.

    rsa = CkRsa_Create();

    success = CkRsa_UnlockComponent(rsa,"Anything for 30-day trial");
    if (success != TRUE) {
        printf("%s\n",CkRsa_lastErrorText(rsa));
        return;
    }

    //  Generate a 1024-bit key.  Chilkat RSA supports
    //  key sizes ranging from 512 bits to 4096 bits.
    success = CkRsa_GenerateKey(rsa,1024);
    if (success != TRUE) {
        printf("%s\n",CkRsa_lastErrorText(rsa));
        return;
    }

    //  Keys are exported in XML format:

    pubKeyXml = CkRsa_exportPublicKey(rsa);

    pubKey = CkPublicKey_Create();
    success = CkPublicKey_LoadXml(pubKey,pubKeyXml);
    //  For brevity, we are not checking the return value...
    success = CkPublicKey_SaveOpenSslPemFile(pubKey,"pubKey.pem");

    privKeyXml = CkRsa_exportPrivateKey(rsa);

    privKey = CkPrivateKey_Create();
    success = CkPrivateKey_LoadXml(privKey,privKeyXml);
    success = CkPrivateKey_SaveRsaPemFile(privKey,"privKey.pem");

    //  Other methods exist for saving the private key in PKCS8 format,
    //  both encrypted and un-encrypted..

    //  ------------------
    //  Step 2.   This is the code your counterpart will run to
    //  AES encrypt a file.  It generates a random AES key
    //  to use for the encryption.

    crypt = CkCrypt2_Create();

    success = CkCrypt2_UnlockComponent(crypt,"Anything for 30-day trial");
    if (success != TRUE) {
        printf("%s\n",CkCrypt2_lastErrorText(crypt));
        return;
    }

    CkCrypt2_putCryptAlgorithm(crypt,"aes");
    CkCrypt2_putCipherMode(crypt,"cbc");
    CkCrypt2_putKeyLength(crypt,256);

    //  Generate random bytes and return the random bytes
    //  in a hex string:
    CkCrypt2_putEncodingMode(crypt,"hex");

    randomKey = CkCrypt2_genRandomBytesENC(crypt,32);

    //  Set the key.
    CkCrypt2_SetEncodedKey(crypt,randomKey,"hex");

    //  Set the IV to a known value that will be used on both sides.
    //  (If desired, you could generate a random IV and protect it in the same
    //  way as the key...)
    //  The length of the IV for AES is always 16 bytes, regardless of the key size.
    CkCrypt2_SetEncodedIV(crypt,"000102030405060708090A0B0C0D0E0F","hex");

    //  AES Encrypt the file (the file may be any size because it will
    //  stream the file in/out.
    success = CkCrypt2_CkEncryptFile(crypt,"hamlet.xml","aesEncrypted.dat");
    if (success != TRUE) {
        printf("%s\n",CkCrypt2_lastErrorText(crypt));
        return;
    }

    //  ------------------
    //  Step 3.
    //  ------------------
    //  RSA encrypt the AES key.
    //  We'll pretend  your counter part has the public-key PEM file and needs
    //  to load it.  Therefore, we'll start with a new RSA object and load
    //  the public key from the PEM..
    rsa2 = CkRsa_Create();
    pubKey2 = CkPublicKey_Create();

    //  For brevity, don't check the success..
    success = CkPublicKey_LoadOpenSslPemFile(pubKey2,"pubKey.pem");
    pubKeyXml = CkPublicKey_getXml(pubKey2);
    success = CkRsa_ImportPublicKey(rsa2,pubKeyXml);

    //  RSA encrypt the AES key and return it as a base64 encoded string.
    CkRsa_putEncodingMode(rsa2,"base64");

    bUsePrivateKey = FALSE;

    encryptedAesKey = CkRsa_encryptStringENC(rsa2,randomKey,bUsePrivateKey);

    //  At this point, your counterpart sends you the encryptedAesKey,
    //  and the encrypted file.

    //  ------------------
    //  Step 4 - RSA decrypt the AES key.
    //  ------------------

    //  Start with a new RSA object and load the private key from the PEM.
    rsa3 = CkRsa_Create();
    privKey2 = CkPrivateKey_Create();

    success = CkPrivateKey_LoadPemFile(privKey2,"privKey.pem");
    privKeyXml = CkPrivateKey_getXml(privKey2);
    success = CkRsa_ImportPrivateKey(rsa3,privKeyXml);

    //  The encrypted AES key is encoded using base64, so set
    //  our EncodingMode to "base64".
    CkRsa_putEncodingMode(rsa3,"base64");

    bUsePrivateKey = TRUE;

    decryptedAesKey = CkRsa_decryptStringENC(rsa3,encryptedAesKey,bUsePrivateKey);

    //  ------------------
    //  Step 5 - AES decrypt the file.
    //  ------------------

    crypt2 = CkCrypt2_Create();

    CkCrypt2_putCryptAlgorithm(crypt2,"aes");
    CkCrypt2_putCipherMode(crypt2,"cbc");
    CkCrypt2_putKeyLength(crypt2,256);

    //  Set the key.
    CkCrypt2_SetEncodedKey(crypt2,decryptedAesKey,"hex");

    //  Set the IV
    CkCrypt2_SetEncodedIV(crypt2,"000102030405060708090A0B0C0D0E0F","hex");

    //  AES Decrypt the file (the file may be any size because it will
    //  stream the file in/out.
    success = CkCrypt2_CkDecryptFile(crypt2,"aesEncrypted.dat","decrypted.xml");
    if (success != TRUE) {
        printf("%s\n",CkCrypt2_lastErrorText(crypt2));
        return;
    }



    CkRsa_Dispose(rsa);
    CkPublicKey_Dispose(pubKey);
    CkPrivateKey_Dispose(privKey);
    CkCrypt2_Dispose(crypt);
    CkRsa_Dispose(rsa2);
    CkPublicKey_Dispose(pubKey2);
    CkRsa_Dispose(rsa3);
    CkPrivateKey_Dispose(privKey2);
    CkCrypt2_Dispose(crypt2);

    }

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

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