From f5a723399dfc3969bdb712b22616721ec740f818 Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Sun, 25 Oct 2015 18:20:56 +0100 Subject: Update libuecc dependency to v6 and remove use of deprecated API --- src/protocols/ec25519_fhmqvc/util.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/protocols/ec25519_fhmqvc/util.c') diff --git a/src/protocols/ec25519_fhmqvc/util.c b/src/protocols/ec25519_fhmqvc/util.c index 6ee1a39..11aa0ef 100644 --- a/src/protocols/ec25519_fhmqvc/util.c +++ b/src/protocols/ec25519_fhmqvc/util.c @@ -53,8 +53,8 @@ void fastd_protocol_ec25519_fhmqvc_generate_key(void) { ecc_25519_gf_sanitize_secret(&secret_key, &secret_key); ecc_25519_work_t work; - ecc_25519_scalarmult_base(&work, &secret_key); - ecc_25519_store_packed(&public_key, &work); + ecc_25519_scalarmult(&work, &secret_key, &ecc_25519_work_base_legacy); + ecc_25519_store_packed_legacy(&public_key, &work); if (conf.machine_readable) { print_hexdump("", secret_key.p); -- cgit v1.2.3