File size: 2,344 Bytes
5448d8b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 | import { createCipheriv, createDecipheriv, randomBytes, scryptSync } from "node:crypto";
const ALGORITHM = "aes-256-gcm";
const IV_LENGTH = 16;
const KEY_LENGTH = 32;
// Full 16-byte GCM tag produced by cipher.getAuthTag(). Pinning authTagLength on
// decrypt rejects truncated tags, closing the GCM tag-truncation forgery vector.
const AUTH_TAG_LENGTH = 16;
const PREFIX = "enc:v1:";
// Keep this salt in sync with the app-side field encryption format so credentials written by
// CLI setup remain decryptable by the dashboard/server and vice versa.
const STATIC_SALT = "omniroute-field-encryption-v1";
let cachedKey = null;
function getEncryptionKey() {
if (cachedKey !== null) return cachedKey;
const secret = process.env.STORAGE_ENCRYPTION_KEY;
if (!secret || typeof secret !== "string" || secret.trim().length === 0) {
return null;
}
cachedKey = scryptSync(secret, STATIC_SALT, KEY_LENGTH);
return cachedKey;
}
export function encryptCredential(value) {
if (!value || typeof value !== "string" || value.startsWith(PREFIX)) return value || null;
const key = getEncryptionKey();
if (!key) return value;
const iv = randomBytes(IV_LENGTH);
const cipher = createCipheriv(ALGORITHM, key, iv);
let encrypted = cipher.update(value, "utf8", "hex");
encrypted += cipher.final("hex");
const authTag = cipher.getAuthTag().toString("hex");
return `${PREFIX}${iv.toString("hex")}:${encrypted}:${authTag}`;
}
export function decryptCredential(value) {
if (!value || typeof value !== "string") return value || null;
if (!value.startsWith(PREFIX)) return value;
const key = getEncryptionKey();
if (!key) {
throw new Error("STORAGE_ENCRYPTION_KEY is required to decrypt this provider credential.");
}
const body = value.slice(PREFIX.length);
const parts = body.split(":");
if (parts.length !== 3) {
throw new Error("Malformed encrypted provider credential.");
}
const [ivHex, encryptedHex, authTagHex] = parts;
const decipher = createDecipheriv(ALGORITHM, key, Buffer.from(ivHex, "hex"), {
authTagLength: AUTH_TAG_LENGTH,
});
decipher.setAuthTag(Buffer.from(authTagHex, "hex"));
let decrypted = decipher.update(encryptedHex, "hex", "utf8");
decrypted += decipher.final("utf8");
return decrypted;
}
|