Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(Unicode C) RSA Encrypt/Decrypt AES KeyDemonstrates 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.
#include <C_CkRsaW.h> #include <C_CkPublicKeyW.h> #include <C_CkPrivateKeyW.h> #include <C_CkCrypt2W.h> void ChilkatSample(void) { HCkRsaW rsa; BOOL success; const wchar_t *pubKeyXml; HCkPublicKeyW pubKey; const wchar_t *privKeyXml; HCkPrivateKeyW privKey; HCkCrypt2W crypt; const wchar_t *randomKey; HCkRsaW rsa2; HCkPublicKeyW pubKey2; BOOL bUsePrivateKey; const wchar_t *encryptedAesKey; HCkRsaW rsa3; HCkPrivateKeyW privKey2; const wchar_t *decryptedAesKey; HCkCrypt2W crypt2; // This example assumes the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. // ------------------ // Step 1. Generate an RSA key and save to PEM files. rsa = CkRsaW_Create(); // Generate a 1024-bit key. success = CkRsaW_GenerateKey(rsa,1024); if (success != TRUE) { wprintf(L"%s\n",CkRsaW_lastErrorText(rsa)); CkRsaW_Dispose(rsa); return; } // Keys are exported in XML format: pubKeyXml = CkRsaW_exportPublicKey(rsa); pubKey = CkPublicKeyW_Create(); success = CkPublicKeyW_LoadFromString(pubKey,pubKeyXml); // For brevity, we are not checking the return value... success = CkPublicKeyW_SavePemFile(pubKey,FALSE,L"qa_temp/pubKey.pem"); privKeyXml = CkRsaW_exportPrivateKey(rsa); privKey = CkPrivateKeyW_Create(); success = CkPrivateKeyW_LoadXml(privKey,privKeyXml); success = CkPrivateKeyW_SavePemFile(privKey,L"qa_temp/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 = CkCrypt2W_Create(); CkCrypt2W_putCryptAlgorithm(crypt,L"aes"); CkCrypt2W_putCipherMode(crypt,L"cbc"); CkCrypt2W_putKeyLength(crypt,256); // Generate random bytes and return the random bytes // in a hex string: CkCrypt2W_putEncodingMode(crypt,L"hex"); randomKey = CkCrypt2W_genRandomBytesENC(crypt,32); wprintf(L"AES key = %s\n",randomKey); // Set the key. CkCrypt2W_SetEncodedKey(crypt,randomKey,L"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. CkCrypt2W_SetEncodedIV(crypt,L"000102030405060708090A0B0C0D0E0F",L"hex"); // AES Encrypt the file (the file may be any size because it will // stream the file in/out. success = CkCrypt2W_CkEncryptFile(crypt,L"qa_data/hamlet.xml",L"qa_temp/aesEncrypted.dat"); if (success != TRUE) { wprintf(L"%s\n",CkCrypt2W_lastErrorText(crypt)); CkRsaW_Dispose(rsa); CkPublicKeyW_Dispose(pubKey); CkPrivateKeyW_Dispose(privKey); CkCrypt2W_Dispose(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 = CkRsaW_Create(); pubKey2 = CkPublicKeyW_Create(); // For brevity, don't check the success.. success = CkPublicKeyW_LoadFromFile(pubKey2,L"qa_temp/pubKey.pem"); pubKeyXml = CkPublicKeyW_getXml(pubKey2); success = CkRsaW_ImportPublicKey(rsa2,pubKeyXml); // RSA encrypt the AES key and return it as a base64 encoded string. CkRsaW_putEncodingMode(rsa2,L"base64"); bUsePrivateKey = FALSE; encryptedAesKey = CkRsaW_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 = CkRsaW_Create(); privKey2 = CkPrivateKeyW_Create(); success = CkPrivateKeyW_LoadPemFile(privKey2,L"qa_temp/privKey.pem"); privKeyXml = CkPrivateKeyW_getXml(privKey2); success = CkRsaW_ImportPrivateKey(rsa3,privKeyXml); // The encrypted AES key is encoded using base64, so set // our EncodingMode to "base64". CkRsaW_putEncodingMode(rsa3,L"base64"); bUsePrivateKey = TRUE; decryptedAesKey = CkRsaW_decryptStringENC(rsa3,encryptedAesKey,bUsePrivateKey); wprintf(L"decryptedAesKey = %s\n",decryptedAesKey); // ------------------ // Step 5 - AES decrypt the file. // ------------------ crypt2 = CkCrypt2W_Create(); CkCrypt2W_putCryptAlgorithm(crypt2,L"aes"); CkCrypt2W_putCipherMode(crypt2,L"cbc"); CkCrypt2W_putKeyLength(crypt2,256); // Set the key. CkCrypt2W_SetEncodedKey(crypt2,decryptedAesKey,L"hex"); // Set the IV CkCrypt2W_SetEncodedIV(crypt2,L"000102030405060708090A0B0C0D0E0F",L"hex"); // AES Decrypt the file (the file may be any size because it will // stream the file in/out. success = CkCrypt2W_CkDecryptFile(crypt2,L"qa_temp/aesEncrypted.dat",L"qa_temp/decrypted.xml"); if (success != TRUE) { wprintf(L"%s\n",CkCrypt2W_lastErrorText(crypt2)); CkRsaW_Dispose(rsa); CkPublicKeyW_Dispose(pubKey); CkPrivateKeyW_Dispose(privKey); CkCrypt2W_Dispose(crypt); CkRsaW_Dispose(rsa2); CkPublicKeyW_Dispose(pubKey2); CkRsaW_Dispose(rsa3); CkPrivateKeyW_Dispose(privKey2); CkCrypt2W_Dispose(crypt2); return; } CkRsaW_Dispose(rsa); CkPublicKeyW_Dispose(pubKey); CkPrivateKeyW_Dispose(privKey); CkCrypt2W_Dispose(crypt); CkRsaW_Dispose(rsa2); CkPublicKeyW_Dispose(pubKey2); CkRsaW_Dispose(rsa3); CkPrivateKeyW_Dispose(privKey2); CkCrypt2W_Dispose(crypt2); } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.