Crypto: more non-ascii removal.

This commit is contained in:
REDMOND\brodes
2025-10-06 11:34:45 -04:00
parent abeb3141b1
commit 017a956d5e
2 changed files with 13 additions and 13 deletions

View File

@@ -19,15 +19,15 @@ import javax.crypto.spec.SecretKeySpec;
*
* Flows include:
*
* 1. Secure HMAC-SHA2 (HMAC-SHA256) a widely accepted MAC. 2. Secure
* HMAC-SHA3 (HMAC-SHA3-256) an alternative using the SHA-3 family. 3. Secure
* Poly1305 MAC using BouncyCastles implementation. 4. Secure GMAC using
* AES-GCMs authentication tag in a dedicated MAC mode. 5. Secure KMAC using
* 1. Secure HMAC-SHA2 (HMAC-SHA256) - a widely accepted MAC. 2. Secure
* HMAC-SHA3 (HMAC-SHA3-256) - an alternative using the SHA-3 family. 3. Secure
* Poly1305 MAC - using BouncyCastles implementation. 4. Secure GMAC - using
* AES-GCMs authentication tag in a dedicated MAC mode. 5. Secure KMAC - using
* KMAC128 (from the SHA-3 family).
*
* Insecure examples include:
*
* 6. Insecure HMAC-SHA1 which is deprecated.
* 6. Insecure HMAC-SHA1 - which is deprecated.
*
* Further flows:
*