Get your own Node server
// Import the crypto module
const crypto = require('crypto');

// Create a decipher with createDecipheriv
const algorithm = 'aes-256-cbc';
const key = Buffer.from('your-encryption-key-in-hex', 'hex'); // 32 bytes for AES-256
const iv = Buffer.from('your-iv-in-hex', 'hex');              // 16 bytes for AES
const decipher = crypto.createDecipheriv(algorithm, key, iv);

console.log('Decipher created successfully');

              
Decipher created successfully