From 6374d8ce970c589f64ab8998209148a0b0176ad9 Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Mon, 21 Dec 2020 22:23:14 +1100 Subject: [PATCH] docs: fix simple typo, seperately -> separately There is a small typo in src/add_scalar.c. Should read `separately` rather than `seperately`. --- src/add_scalar.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/add_scalar.c b/src/add_scalar.c index 7528a7a..f7b2f69 100644 --- a/src/add_scalar.c +++ b/src/add_scalar.c @@ -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 {