Skip to content

Commit

Permalink
Debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
val-samonte committed Feb 2, 2025
1 parent 6c40030 commit 59c94a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/decrypt/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export default function DecryptPage() {
// AES-GCM
data = await decrypt(salt, password, ciphertext)
} catch (e: any) {
setHasError('AES-GCM: ' + e.message)
setHasError('AES-GCM: ' + e.message + ' s: ' + salt + ' c: ' + ciphertext)
return
}

Expand Down

0 comments on commit 59c94a1

Please sign in to comment.