Skip to content

Instantly share code, notes, and snippets.

View zoulux's full-sized avatar
🎯
Focusing

jake zoulux

🎯
Focusing
View GitHub Profile
@brettscott
brettscott / aes-256-cbc-test.js
Last active March 25, 2024 03:44
AES 256 CBC encryption between Golang and Node JS
// Node v6.9.0
//
// TEST FILE (cut down for simplicity)
// To ensure Golang encrypted string can be decrypted in NodeJS.
//
let crypto;
try {
crypto = require('crypto');