uLicense/uLicense-1.2.6/discord/auth/crypto.js

43 lines
853 B
JavaScript

const crypto = require('crypto');
const config = require('../config.json');
const algorithm = 'aes-256-ctr';
const secretKey = config.encrypt_secret;
const key = crypto
.createHash('sha256')
.update(String(secretKey))
.digest('base64')
.substr(0, 32);
const iv = crypto.randomBytes(16);
const encrypt = (text) => {
const cipher = crypto.createCipheriv(algorithm, key, iv);
const encrypted = Buffer.concat([cipher.update(text), cipher.final()]);
return {
iv: iv.toString('hex'),
content: encrypted.toString('hex'),
};
};
const decrypt = (hash) => {
const decipher = crypto.createDecipheriv(
algorithm,
key,
Buffer.from(hash.iv, 'hex')
);
const decrpyted = Buffer.concat([
decipher.update(Buffer.from(hash.content, 'hex')),
decipher.final(),
]);
return decrpyted.toString();
};
module.exports = {
encrypt,
decrypt,
};