From 4c706d081df426294bf4556496748474f6e5fac2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D0=BD=D1=82=D0=BE=D0=BD=20=D0=A2=D1=80=D0=BE=D1=88?= =?UTF-8?q?=D0=B8=D0=BD?= Date: Wed, 5 Aug 2026 20:07:38 +0300 Subject: [PATCH] lengths in hex digits changed to bytes --- index.html | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/index.html b/index.html index f4c4813..5bda51b 100644 --- a/index.html +++ b/index.html @@ -70,7 +70,7 @@
- +
@@ -235,7 +235,7 @@
- +
@@ -505,7 +505,7 @@
- +
@@ -703,11 +703,11 @@
- +
- +
@@ -719,11 +719,11 @@
- +
- +
@@ -1489,7 +1489,7 @@ function updateSpKid() { } function updateKeyPlaceholder(prefix, algNib) { const keyLen = {1: 8, 5: 16, 9: 24, 0xD: 8}[algNib] || 8; - document.getElementById('sp-' + prefix + '-key').placeholder = keyLen + 'B key (' + (keyLen * 2) + ' hex)'; + document.getElementById('sp-' + prefix + '-key').placeholder = keyLen + ' bytes key'; } // ===== DES / 3DES using des.js library (bundled as des-bundle.js) =====