Corrects typos and grammatical errors

Improves readability across documentation and inline comments by fixing common spelling mistakes and duplicate words.
Этот коммит содержится в:
Mark Jocas
2026-05-20 08:33:48 +02:00
родитель 39b333656b
Коммит 63fe3d42a2
10 изменённых файлов: 17 добавлений и 17 удалений
+1 -1
Просмотреть файл
@@ -45,7 +45,7 @@ void ed25519_add_scalar(unsigned char *public_key, unsigned char *private_key, c
/* if we know the private key we don't need a point addition, which is faster */
/* using a "timing attack" you could find out wether or not we know the private
key, but this information seems rather useless - if this is important pass
public_key and private_key seperately in 2 function calls */
public_key and private_key separately in 2 function calls */
if (private_key) {
ge_scalarmult_base(&A, private_key);
} else {