style: заменить короткие имена переменных

Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
This commit is contained in:
2026-08-09 00:32:32 +03:00
parent 3f59a97844
commit 3950dd94ee
4 changed files with 73 additions and 71 deletions
+2 -2
View File
@@ -136,8 +136,8 @@ func (k *kemAdapter) Decapsulate(
// Reject the all-zero public key (identity point), which yields an all-zero shared secret.
allZero := true
for _, b := range ciphertext {
if b != 0 {
for _, byteValue := range ciphertext {
if byteValue != 0 {
allZero = false
break
}