Skip to content

Instantly share code, notes, and snippets.

View DeevD's full-sized avatar

H3inHt3t DeevD

  • Yangon, Myanmar
View GitHub Profile
const crypto = require('crypto');
var key = "1234567890123456";
var cipher = crypto.createCipher('aes-128-ecb',key)
var text = "hello world this is encrypted from node js"