Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/add_scalar.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down