Skip to content

Instantly share code, notes, and snippets.

View WhatIsTofu's full-sized avatar
💭
Bulls make money, bears make money, and pigs get slaughtered 🔪 🐷

Luannie Dang WhatIsTofu

💭
Bulls make money, bears make money, and pigs get slaughtered 🔪 🐷
View GitHub Profile
@siwalikm
siwalikm / aes-256-cbc.js
Last active May 7, 2024 17:22
AES-256-CBC implementation in nodeJS with built-in Crypto library
'use strict';
const crypto = require('crypto');
const ENC_KEY = "bf3c199c2470cb477d907b1e0917c17b"; // set random encryption key
const IV = "5183666c72eec9e4"; // set random initialisation vector
// ENC_KEY and IV can be generated as crypto.randomBytes(32).toString('hex');
const phrase = "who let the dogs out";
var encrypt = ((val) => {