21 lines
728 B
JavaScript
21 lines
728 B
JavaScript
|
const crypto = require('crypto');
|
||
|
const CHAVE = 'bf3c199c2470cb477d907b1e0917c17e'; // 32
|
||
|
const IV = "5183666c72eec9e4"; // 16
|
||
|
const ALGORITMO = "aes-256-cbc";
|
||
|
const METODO_CRIPTOGRAFIA = 'hex';
|
||
|
const METODO_DESCRIPTOGRAFIA = 'hex';
|
||
|
|
||
|
const encrypt = ((text) => {
|
||
|
let cipher = crypto.createCipheriv(ALGORITMO, CHAVE, IV);
|
||
|
let encrypted = cipher.update(text, 'utf8', METODO_CRIPTOGRAFIA);
|
||
|
encrypted += cipher.final(METODO_CRIPTOGRAFIA);
|
||
|
return encrypted;
|
||
|
});
|
||
|
|
||
|
const decrypt = ((text) => {
|
||
|
let decipher = crypto.createDecipheriv(ALGORITMO, CHAVE, IV);
|
||
|
let decrypted = decipher.update(text, METODO_DESCRIPTOGRAFIA, 'utf8');
|
||
|
return (decrypted + decipher.final('utf8'));
|
||
|
});
|
||
|
|
||
|
module.exports = {encrypt, decrypt};
|