feat: update libraries

This commit is contained in:
2026-01-12 00:32:42 +08:00
parent de7d85fdc9
commit 3a74da85d2
3 changed files with 125 additions and 10 deletions

View File

@@ -1,8 +1,11 @@
import {
decodeBase64Url,
encodeBase64Url,
getHomeDirOrDie,
hexStringToUint8Array,
uint8ArrayToHexString,
} from "https://global.hatter.ink/script/get/@6/deno-commons-mod.ts";
} from "https://global.hatter.ink/script/get/@8/deno-commons-mod.ts";
import {getRandomValues} from "node:crypto";
import {assertEquals} from "jsr:@std/assert";
const COMMONS_LOCAL_ENCRYPT_TINY_ENCRYPT_MASTER_KEY_FILE = getHomeDirOrDie() +
"/.cache/commons-local-encrypt-tiny-encrypt-master-key";
@@ -12,6 +15,26 @@ interface TinyEncryptSimpleDecryptObject {
result: string;
}
let cachedCryptoMasterKey: CryptoKey | null = null;
export async function lazyLoadCryptoMasterKey(): Promise<CryptoKey> {
if (cachedCryptoMasterKey == null) {
cachedCryptoMasterKey = await loadCryptoMasterKey();
}
return cachedCryptoMasterKey;
}
async function loadCryptoMasterKey(): Promise<CryptoKey> {
const key = await loadMasterKey();
return await crypto.subtle.importKey(
"raw",
key,
"AES-GCM",
false,
["encrypt", "decrypt"],
);
}
async function loadMasterKey(): Promise<Uint8Array> {
const masterKeyContent = Deno.readTextFileSync(
COMMONS_LOCAL_ENCRYPT_TINY_ENCRYPT_MASTER_KEY_FILE,
@@ -38,8 +61,55 @@ stderr: ${new TextDecoder().decode(stderr)}`);
return hexStringToUint8Array(tinyEncryptSimpleDecryptObject.result);
}
async function main() {
// TODO ...
console.log(uint8ArrayToHexString(await loadMasterKey()));
export async function teDecryptToString(ciphertext: string): Promise<string> {
const decryptedValue = await teDecrypt(ciphertext);
return new TextDecoder().decode(decryptedValue);
}
await main();
export async function teDecrypt(ciphertext: string): Promise<ArrayBufferLike> {
if (!ciphertext.startsWith("te:")) {
throw new Error(`Invalid ciphertext: ${ciphertext}`);
}
const ciphertextParts = ciphertext.split(":");
if (ciphertextParts.length !== 3) {
throw new Error(`Invalid ciphertext: ${ciphertext}`);
}
const nonce = decodeBase64Url(ciphertextParts[1]);
const ciphertextAndTag = decodeBase64Url(ciphertextParts[2]);
const cryptoKey = await lazyLoadCryptoMasterKey();
return await crypto.subtle.decrypt(
{ name: "AES-GCM", iv: nonce },
cryptoKey,
ciphertextAndTag,
);
}
export async function teEncrypt(plaintext: string): Promise<string> {
const nonce = randomNonce();
const plaintextBuffer = new TextEncoder().encode(plaintext);
const cryptoKey = await lazyLoadCryptoMasterKey();
const encryptedData = await crypto.subtle.encrypt(
{ name: "AES-GCM", iv: nonce },
cryptoKey,
plaintextBuffer,
);
return `te:${encodeBase64Url(nonce)}:${encodeBase64Url(encryptedData)}`;
}
function randomNonce(): ArrayBufferLike {
const buffer = new Uint8Array(12);
getRandomValues(buffer);
return buffer;
}
Deno.test("teEncryptDecrypt", async () => {
assertEquals(
"hello world",
await teDecryptToString(
await teEncrypt("hello world"),
),
);
});