refactor: rename CLI to crypt and remove ECB terminology
Some checks failed
CI / build-and-test (push) Has been cancelled

This commit is contained in:
2026-01-12 22:12:05 +02:00
parent 4f90912a4d
commit dac009af1b
3 changed files with 15 additions and 16 deletions

View File

@@ -17,8 +17,7 @@ pub fn Home() -> impl IntoView {
<p>
"A legacy algorithm from the 1970s. While historically significant, "
"it is now considered insecure due to its short 56-bit key length. "
"This tool uses " <strong>"DES-ECB"</strong>
" mode for educational purposes."
"This tool provides DES block encryption for educational purposes."
</p>
</div>
@@ -26,7 +25,7 @@ pub fn Home() -> impl IntoView {
<h3>"AES (Advanced Encryption Standard)"</h3>
<p>
"The modern standard for symmetric encryption. This tool offers "
<strong>"AES-128-ECB"</strong> " for single-block operations and "
<strong>"AES-128"</strong> " for single-block operations and "
<strong>"AES-128-CBC"</strong> " for encrypting arbitrary data with "
"PKCS#7 padding."
</p>