diff options
| author | Pinapelz <yukais@pinapelz.com> | 2026-06-03 15:05:42 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2026-06-03 15:05:42 -0700 |
| commit | 95ef4507c09ceb513f5e0e5fe1996b5011c3d68c (patch) | |
| tree | d8c12c280964824405955a4c0cf79decccad50fc /src/helpers/fetchSolution.ts | |
| parent | 7336442cd84d5090a8a52c2c55a83a0f5445b794 (diff) | |
triggerdebug-decrypt
Diffstat (limited to 'src/helpers/fetchSolution.ts')
| -rw-r--r-- | src/helpers/fetchSolution.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/helpers/fetchSolution.ts b/src/helpers/fetchSolution.ts index dd623a0..6c607ed 100644 --- a/src/helpers/fetchSolution.ts +++ b/src/helpers/fetchSolution.ts @@ -43,7 +43,7 @@ export async function getDailySolution(): Promise<Song> { const combined = new Uint8Array(ciphertext.length + authTag.length); combined.set(ciphertext); combined.set(authTag, ciphertext.length); - console.log(key.algorithm); + console.log(key.algorithm); // bro console.log(key.usages); const decrypted = await crypto.subtle.decrypt( { name: 'AES-GCM', iv: hexToBytes(iv) }, |
