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
|
import { Song } from "../types/song";
const SALT = process.env.HEARDLE_SALT ?? 'changeme';
const API_URL = process.env.HEARDLE_API_URL ?? 'http://localhost:3001';
function hexToBytes(hex: string): Uint8Array {
const bytes = new Uint8Array(hex.length / 2);
for (let i = 0; i < hex.length; i += 2) {
bytes[i / 2] = parseInt(hex.slice(i, i + 2), 16);
}
return bytes;
}
async function getDailyKey(): Promise<CryptoKey> {
const enc = new TextEncoder();
const date = new Date().toISOString().split('T')[0];
const keyMaterial = await crypto.subtle.importKey(
'raw',
enc.encode(date),
'PBKDF2',
false,
['deriveKey'],
);
return crypto.subtle.deriveKey(
{ name: 'PBKDF2', salt: enc.encode(SALT), iterations: 100_000, hash: 'SHA-256' },
keyMaterial,
{ name: 'AES-GCM', length: 256 },
false,
['decrypt'],
);
}
export async function getDailySolution(): Promise<Song> {
const solutionData = await fetch(`${API_URL}/today`);
if (!solutionData.ok) {
throw new Error(`Failed to fetch solution: ${solutionData.statusText}`);
}
const { iv, tag, data } = await solutionData.json();
const key = await getDailyKey();
const ciphertext = hexToBytes(data);
const authTag = hexToBytes(tag);
const combined = new Uint8Array(ciphertext.length + authTag.length);
combined.set(ciphertext);
combined.set(authTag, ciphertext.length);
const decrypted = await crypto.subtle.decrypt(
{ name: 'AES-GCM', iv: hexToBytes(iv) },
key,
combined,
);
return JSON.parse(new TextDecoder().decode(decrypted)) as Song;
}
|