Chilkat Examples

ChilkatHOMEAndroid™Classic ASPCC++C#Mono C#.NET Core C#C# UWP/WinRTDataFlexDelphi ActiveXDelphi DLLVisual FoxProJavaLianjaMFCObjective-CPerlPHP ActiveXPHP ExtensionPowerBuilderPowerShellPureBasicCkPythonChilkat2-PythonRubySQL ServerSwift 2Swift 3,4,5...TclUnicode CUnicode C++Visual Basic 6.0VB.NETVB.NET UWP/WinRTVBScriptXojo PluginNode.jsExcelGo

MFC Examples

Web API Categories

ASN.1
Amazon EC2
Amazon Glacier
Amazon S3
Amazon S3 (new)
Amazon SES
Amazon SNS
Amazon SQS
Async
Azure Cloud Storage
Azure Service Bus
Azure Table Service
Base64
Bounced Email
Box
CAdES
CSR
CSV
Certificates
Compression
DKIM / DomainKey
DSA
Diffie-Hellman
Digital Signatures
Dropbox
Dynamics CRM
EBICS
ECC
Ed25519
Email Object
Encryption
FTP
FileAccess
Firebase
GMail REST API
GMail SMTP/IMAP/POP
Geolocation
Google APIs
Google Calendar
Google Cloud SQL
Google Cloud Storage
Google Drive
Google Photos
Google Sheets
Google Tasks
Gzip
HTML-to-XML/Text
HTTP

HTTP Misc
IMAP
JSON
JSON Web Encryption (JWE)
JSON Web Signatures (JWS)
JSON Web Token (JWT)
Java KeyStore (JKS)
MHT / HTML Email
MIME
MS Storage Providers
Microsoft Graph
NTLM
OAuth1
OAuth2
OIDC
Office365
OneDrive
OpenSSL
Outlook
Outlook Calendar
Outlook Contact
PDF Signatures
PEM
PFX/P12
PKCS11
POP3
PRNG
REST
REST Misc
RSA
SCP
SCard
SFTP
SMTP
SSH
SSH Key
SSH Tunnel
ScMinidriver
SharePoint
Socket/SSL/TLS
Spider
Stream
Tar Archive
Upload
WebSocket
XAdES
XML
XML Digital Signatures
XMP
Zip
curl

 

 

 

(MFC) 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 uses the decrypted symmetric key to decrypt the message content.

Chilkat C/C++ Library Downloads

MS Visual C/C++ Libs

See Also: Using MFC CString in Chilkat

#include <CkRsa.h>
#include <CkCrypt2.h>

void ChilkatSample(void)
    {
    CkString strOut;

    // This example assumes the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    CkRsa rsa;
    CkCrypt2 crypt;

    // 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.
    const char *xmlKey = rsa.snkToXml("chilkat2.snk");

    // Alternatively, you may generate a public/private key pair 
    // by calling GenerateKey..

    // Import the private key into the RSA instance.
    bool success = rsa.ImportPrivateKey(xmlKey);

    // Our message data will be encrypted using 128-bit AES
    // encryption, using CBC (cipher-block chaining).
    crypt.put_CryptAlgorithm("aes");
    crypt.put_CipherMode("cbc");
    crypt.put_KeyLength(128);

    // Generate a 128-bit secret key from a passphrase and return it as a hex string.
    const char *secretKey = crypt.genEncodedSecretKey("secret","hex");
    strOut.append("Unencrypted Key: ");
    strOut.append(secretKey);
    strOut.append("\r\n");

    // Use the key we generated:
    crypt.SetEncodedKey(secretKey,"hex");

    // RSA encrypt the secret key and return as a hex string:
    rsa.put_EncodingMode("hex");
    bool bUsePrivateKey = false;
    const char *encryptedKey = rsa.encryptStringENC(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.
    crypt.put_EncodingMode("base64");
    const char *encryptedText = crypt.encryptStringENC("Hello World!");

    // Show our encrypted key and encrypted text:
    strOut.append("Encrypted Key: ");
    strOut.append(encryptedKey);
    strOut.append("\r\n");
    strOut.append("Encrypted Text: ");
    strOut.append(encryptedText);
    strOut.append("\r\n");

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

    // Here's what we do at the partner end:
    success = rsa.ImportPublicKey(xmlKey);

    // First, decrypt the encryptedKey:
    bUsePrivateKey = true;
    const char *decryptedKey = rsa.decryptStringENC(encryptedKey,bUsePrivateKey);
    strOut.append("Decrypted Key: ");
    strOut.append(decryptedKey);
    strOut.append("\r\n");

    // Set our crypt object's properties and secret key:
    CkCrypt2 crypt2;
    crypt2.put_CryptAlgorithm("aes");
    crypt2.put_CipherMode("cbc");
    crypt2.put_KeyLength(128);
    crypt2.put_EncodingMode("base64");
    crypt2.SetEncodedKey(decryptedKey,"hex");

    // Decrypt the message:
    const char *decryptedText = crypt2.decryptStringENC(encryptedText);
    strOut.append("Decrypted Text: ");
    strOut.append(decryptedText);
    strOut.append("\r\n");


    SetDlgItemText(IDC_EDIT1,strOut.getUnicode());

    }

 

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