Chilkat Examples

ChilkatHOME.NET Core C#Android™AutoItCC#C++Chilkat2-PythonCkPythonClassic ASPDataFlexDelphi ActiveXDelphi DLLGoJavaLianjaMono C#Node.jsObjective-CPHP ActiveXPHP ExtensionPerlPowerBuilderPowerShellPureBasicRubySQL ServerSwift 2Swift 3,4,5...TclUnicode CUnicode C++VB.NETVBScriptVisual Basic 6.0Visual FoxProXojo Plugin

Node.js Examples

Web API Categories

ASN.1
AWS KMS
AWS Misc
Amazon EC2
Amazon Glacier
Amazon S3
Amazon S3 (new)
Amazon SES
Amazon SNS
Amazon SQS
Async
Azure Cloud Storage
Azure Key Vault
Azure Service Bus
Azure Table Service
Base64
Bounced Email
Box
CAdES
CSR
CSV
Certificates
Code Signing
Compression
DKIM / DomainKey
DNS
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
Misc
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
SharePoint Online
Signing in the Cloud
Socket/SSL/TLS
Spider
Stream
Tar Archive
ULID/UUID
Upload
WebSocket
XAdES
XML
XML Digital Signatures
XMP
Zip
curl
uncategorized

 

 

 

(Node.js) 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.

Install Chilkat for Node.js and Electron using npm at

Chilkat npm packages for Node.js

Chilkat npm packages for Electron

on Windows, Linux, MacOSX, and ARM

var os = require('os');
if (os.platform() == 'win32') {  
    if (os.arch() == 'ia32') {
        var chilkat = require('@chilkat/ck-node21-win-ia32');
    } else {
        var chilkat = require('@chilkat/ck-node21-win64'); 
    }
} else if (os.platform() == 'linux') {
    if (os.arch() == 'arm') {
        var chilkat = require('@chilkat/ck-node21-arm');
    } else if (os.arch() == 'x86') {
        var chilkat = require('@chilkat/ck-node21-linux32');
    } else {
        var chilkat = require('@chilkat/ck-node21-linux64');
    }
} else if (os.platform() == 'darwin') {
    if (os.arch() == 'arm64') {
        var chilkat = require('@chilkat/ck-node21-mac-m1');
    } else {
        var chilkat = require('@chilkat/ck-node21-macosx');
    }
}

function chilkatExample() {

    // 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.

    var rsa = new chilkat.Rsa();

    // Generate a 1024-bit key. 
    var success = rsa.GenerateKey(1024);
    if (success !== true) {
        console.log(rsa.LastErrorText);
        return;
    }

    // Keys are exported in XML format:
    var pubKeyXml = rsa.ExportPublicKey();

    var pubKey = new chilkat.PublicKey();
    success = pubKey.LoadFromString(pubKeyXml);
    // For brevity, we are not checking the return value...
    success = pubKey.SavePemFile(false,"qa_temp/pubKey.pem");

    var privKeyXml = rsa.ExportPrivateKey();

    var privKey = new chilkat.PrivateKey();
    success = privKey.LoadXml(privKeyXml);
    success = privKey.SavePemFile("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.

    var crypt = new chilkat.Crypt2();

    crypt.CryptAlgorithm = "aes";
    crypt.CipherMode = "cbc";
    crypt.KeyLength = 256;

    // Generate random bytes and return the random bytes
    // in a hex string:
    crypt.EncodingMode = "hex";
    var randomKey = crypt.GenRandomBytesENC(32);
    console.log("AES key = " + randomKey);

    // Set the key.
    crypt.SetEncodedKey(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.
    crypt.SetEncodedIV("000102030405060708090A0B0C0D0E0F","hex");

    // AES Encrypt the file (the file may be any size because it will
    // stream the file in/out.
    success = crypt.CkEncryptFile("qa_data/hamlet.xml","qa_temp/aesEncrypted.dat");
    if (success !== true) {
        console.log(crypt.LastErrorText);
        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..
    var rsa2 = new chilkat.Rsa();
    var pubKey2 = new chilkat.PublicKey();

    // For brevity, don't check the success..  
    success = pubKey2.LoadFromFile("qa_temp/pubKey.pem");
    pubKeyXml = pubKey2.GetXml();
    success = rsa2.ImportPublicKey(pubKeyXml);

    // RSA encrypt the AES key and return it as a base64 encoded string.
    rsa2.EncodingMode = "base64";
    var bUsePrivateKey = false;
    var encryptedAesKey = rsa2.EncryptStringENC(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.
    var rsa3 = new chilkat.Rsa();
    var privKey2 = new chilkat.PrivateKey();

    success = privKey2.LoadPemFile("qa_temp/privKey.pem");
    privKeyXml = privKey2.GetXml();
    success = rsa3.ImportPrivateKey(privKeyXml);

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

    bUsePrivateKey = true;
    var decryptedAesKey = rsa3.DecryptStringENC(encryptedAesKey,bUsePrivateKey);
    console.log("decryptedAesKey = " + decryptedAesKey);

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

    var crypt2 = new chilkat.Crypt2();

    crypt2.CryptAlgorithm = "aes";
    crypt2.CipherMode = "cbc";
    crypt2.KeyLength = 256;

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

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

    // AES Decrypt the file (the file may be any size because it will
    // stream the file in/out.
    success = crypt2.CkDecryptFile("qa_temp/aesEncrypted.dat","qa_temp/decrypted.xml");
    if (success !== true) {
        console.log(crypt2.LastErrorText);
        return;
    }


}

chilkatExample();

 

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