Node.js crypto.createCipheriv() Method
The crypto.createCipheriv() method is an inbuilt application programming interface of the crypto module which is used to create a Cipher object, with the stated algorithm, key and initialization vector (iv).
Syntax:
crypto.createCipheriv( algorithm, key, iv, options )
Parameters: This method accept four parameters as mentioned above and described below:
- algorithm: It is a string type value that dependent on OpenSSL. The examples are aes192, aes256, etc.
- key: It is the raw key which is used by the algorithm and iv. It holds the string, Buffer, TypedArray or DataView. The key can be a KeyObject optionally of type secret.
- iv: It is an initialization vector that must be uncertain and very unique. However, an ideal iv will be cryptographically random. It don’t need to be secret. It can holds string, Buffer, TypedArray, or DataView type data. If cipher doesn’t requires iv then it can be null.
- options: It is an optional parameter that is used to control stream behavior. It is optional except when a cipher is used in CCM or OCB mode(e.g. ‘aes-128-ccm’). In that case, the authTagLength option is required which defines the length(bytes) of the authentication tag whereas, in GCM mode, the authTagLength option is not needed but it can be used to set the length of the authentication tag that will be returned by the getAuthTag() method and the default value is 16 bytes.
Return Value: It returns Cipher object.
Below examples illustrate the use of crypto.createCipheriv() method in Node.js:
Example 1:
javascript
// Node.js program to demonstrate the // crypto.createCipheriv() method// Includes crypto moduleconst crypto = require('crypto');// Defining algorithmconst algorithm = 'aes-256-cbc';// Defining keyconst key = crypto.randomBytes(32);// Defining ivconst iv = crypto.randomBytes(16);// An encrypt functionfunction encrypt(text) { // Creating Cipheriv with its parameter let cipher = crypto.createCipheriv( 'aes-256-cbc', Buffer.from(key), iv); // Updating text let encrypted = cipher.update(text); // Using concatenation encrypted = Buffer.concat([encrypted, cipher.final()]); // Returning iv and encrypted data return { iv: iv.toString('hex'), encryptedData: encrypted.toString('hex') };}// Displays outputvar output = encrypt("GeeksforGeeks");console.log(output); |
Output:
{ iv: 'fb1f4b0a7daaada6cae678df32fad0f0',
encryptedData: '41aad2618892aa3d1850d336ad15b50e' }Example 2:
javascript
// Node.js program to demonstrate the // crypto.createCipheriv() method// Includes crypto moduleconst crypto = require('crypto');// Defining algorithmconst algorithm = 'aes-192-cbc';// Defining passwordconst password = 'bncaskdbvasbvlaslslasfhj';// Defining keyconst key = crypto.scryptSync(password, 'GfG', 24);// Defininf ivconst iv = Buffer.alloc(16, 0);// Creating cipherconst cipher = crypto.createCipheriv(algorithm, key, iv);// Declaring encryptedlet encrypted = '';// Reading datacipher.on('readable', () => { let chunk; while (null !== (chunk = cipher.read())) { encrypted += chunk.toString('base64'); }});// Handling end eventcipher.on('end', () => {console.log(encrypted);});// Writing datacipher.write('CS-Portal');cipher.end();console.log("done"); |
Output:
done MfHwhG/WPv+TIbG/qM78qA==
Reference: https://nodejs.org/api/crypto.html#crypto_crypto_createcipheriv_algorithm_key_iv_options


