summaryrefslogtreecommitdiff
path: root/eddsa-verify.c
diff options
context:
space:
mode:
Diffstat (limited to 'eddsa-verify.c')
-rw-r--r--eddsa-verify.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/eddsa-verify.c b/eddsa-verify.c
index 7718a126..8a623562 100644
--- a/eddsa-verify.c
+++ b/eddsa-verify.c
@@ -114,7 +114,7 @@ _eddsa_verify (const struct ecc_curve *ecc,
/* Compute h A + R - s G, which should be the neutral point */
ecc->mul (ecc, P, hp, A, scratch_out);
- ecc_add_eh (ecc, P, P, R, scratch_out);
+ ecc->add_hh (ecc, P, P, R, scratch_out);
/* Move out of the way. */
mpn_copyi (hp, sp, ecc->q.size);
ecc->mul_g (ecc, S, hp, scratch_out);