crypto/index.js
2023-09-15 13:10:53 -04:00

6 lines
197 B
JavaScript

const crypto = require('./crypto');
const encrypted_key = crypto.encrypt("HelloWorld");
console.log(encrypted_key);
const decrypted_key = crypto.decrypt(encrypted_key);
console.log(decrypted_key);