1
0
Fork 0
mirror of https://github.com/wukko/cobalt.git synced 2025-04-03 00:31:40 +02:00
cobalt/src/modules/sub/crypto.js

27 lines
926 B
JavaScript
Raw Normal View History

import { createHmac, createCipheriv, createDecipheriv, scryptSync } from "crypto";
const algorithm = "aes256"
const keyLength = 32;
2022-07-09 00:17:56 +06:00
export function generateHmac(str, salt) {
2024-03-05 21:14:54 +06:00
return createHmac("sha256", salt).update(str).digest("base64url");
}
export function encryptStream(str, iv, secret) {
const buff = Buffer.from(JSON.stringify(str), "utf-8");
2024-03-05 21:14:54 +06:00
const key = scryptSync(Buffer.from(secret, "base64url"), "salt", keyLength);
const cipher = createCipheriv(algorithm, key, Buffer.from(iv, "base64url"));
return Buffer.concat([ cipher.update(buff), cipher.final() ])
}
export function decryptStream(buf, iv, secret) {
const buff = Buffer.from(buf, "binary");
2024-03-05 21:14:54 +06:00
const key = scryptSync(Buffer.from(secret, "base64url"), "salt", keyLength);
const decipher = createDecipheriv(algorithm, key, Buffer.from(iv, "base64url"));
return Buffer.concat([ decipher.update(buff), decipher.final() ])
2022-07-09 00:17:56 +06:00
}