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
(C) RSA Encrypting Symmetric Secret KeyThe 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 uses the decrypted symmetric key to decrypt the message content.
#include <C_CkRsa.h> #include <C_CkCrypt2.h> void ChilkatSample(void) { HCkRsa rsa; HCkCrypt2 crypt; const char *xmlKey; BOOL success; const char *secretKey; BOOL bUsePrivateKey; const char *encryptedKey; const char *encryptedText; const char *decryptedKey; HCkCrypt2 crypt2; const char *decryptedText; // This example assumes the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. rsa = CkRsa_Create(); crypt = CkCrypt2_Create(); // 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. xmlKey = CkRsa_snkToXml(rsa,"chilkat2.snk"); // Alternatively, you may generate a public/private key pair // by calling GenerateKey.. // Import the private key into the RSA instance. success = CkRsa_ImportPrivateKey(rsa,xmlKey); // Our message data will be encrypted using 128-bit AES // encryption, using CBC (cipher-block chaining). CkCrypt2_putCryptAlgorithm(crypt,"aes"); CkCrypt2_putCipherMode(crypt,"cbc"); CkCrypt2_putKeyLength(crypt,128); // Generate a 128-bit secret key from a passphrase and return it as a hex string. secretKey = CkCrypt2_genEncodedSecretKey(crypt,"secret","hex"); printf("Unencrypted Key: %s\n",secretKey); // Use the key we generated: CkCrypt2_SetEncodedKey(crypt,secretKey,"hex"); // RSA encrypt the secret key and return as a hex string: CkRsa_putEncodingMode(rsa,"hex"); bUsePrivateKey = FALSE; encryptedKey = CkRsa_encryptStringENC(rsa,secretKey,bUsePrivateKey); // 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. CkCrypt2_putEncodingMode(crypt,"base64"); encryptedText = CkCrypt2_encryptStringENC(crypt,"Hello World!"); // Show our encrypted key and encrypted text: printf("Encrypted Key: %s\n",encryptedKey); printf("Encrypted Text: %s\n",encryptedText); // Assume we sent these strings to our partner... // Here's what we do at the partner end: success = CkRsa_ImportPublicKey(rsa,xmlKey); // First, decrypt the encryptedKey: bUsePrivateKey = TRUE; decryptedKey = CkRsa_decryptStringENC(rsa,encryptedKey,bUsePrivateKey); printf("Decrypted Key: %s\n",decryptedKey); // Set our crypt object's properties and secret key: crypt2 = CkCrypt2_Create(); CkCrypt2_putCryptAlgorithm(crypt2,"aes"); CkCrypt2_putCipherMode(crypt2,"cbc"); CkCrypt2_putKeyLength(crypt2,128); CkCrypt2_putEncodingMode(crypt2,"base64"); CkCrypt2_SetEncodedKey(crypt2,decryptedKey,"hex"); // Decrypt the message: decryptedText = CkCrypt2_decryptStringENC(crypt2,encryptedText); printf("Decrypted Text: %s\n",decryptedText); CkRsa_Dispose(rsa); CkCrypt2_Dispose(crypt); CkCrypt2_Dispose(crypt2); } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.