Skip to content

Instantly share code, notes, and snippets.

View arthurguedes375's full-sized avatar

Arthur Guedes arthurguedes375

  • Curitiba
View GitHub Profile
@siwalikm
siwalikm / aes-256-cbc.js
Last active July 23, 2024 02:26
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) => {
function is(type = '', value) {
const toStringResult = Object.prototype.toString.call(value)
.toLowerCase()
.replace(/[\[\]']/g, "")
.split(" ")[1];
return type === toStringResult;
}