fix: remove unused formatHexDump leftover from merge

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
kerms 2026-03-11 11:24:40 +01:00
parent 17d34a33e9
commit 8d5d05dff0
Signed by: kerms
GPG Key ID: 5432C10DDCF8DAD5
1 changed files with 0 additions and 4 deletions

View File

@ -42,10 +42,6 @@ function formatHex(val: number): string {
return '0x' + val.toString(16).toUpperCase();
}
function formatHexDump(data: Uint8Array): string {
return Array.from(data).map(b => b.toString(16).padStart(2, '0')).join(' ');
}
function formatSha256(data: Uint8Array): string {
// Check if all zeros (not computed)
if (data.every(b => b === 0)) return '(未计算)';