From 35f125524fd5ba5ccdb54b4111f732a360f74702 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20M=C3=B6ller?= Date: Mon, 8 Nov 2021 17:37:05 +0100 Subject: Implement secp192r1 square root, based on patch by Wim Lewis. --- ecc-secp224r1.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'ecc-secp224r1.c') diff --git a/ecc-secp224r1.c b/ecc-secp224r1.c index 91c337d4..767eccf7 100644 --- a/ecc-secp224r1.c +++ b/ecc-secp224r1.c @@ -121,6 +121,7 @@ const struct ecc_curve _nettle_secp_224r1 = -ECC_REDC_SIZE, ECC_SECP224R1_INV_ITCH, 0, + 0, ecc_p, ecc_Bmodp, @@ -132,6 +133,7 @@ const struct ecc_curve _nettle_secp_224r1 = USE_REDC ? ecc_secp224r1_redc : ecc_secp224r1_modp, ecc_secp224r1_inv, NULL, + NULL, }, { 224, @@ -140,6 +142,7 @@ const struct ecc_curve _nettle_secp_224r1 = 0, ECC_MOD_INV_ITCH (ECC_LIMB_SIZE), 0, + 0, ecc_q, ecc_Bmodq, @@ -151,6 +154,7 @@ const struct ecc_curve _nettle_secp_224r1 = ecc_mod, ecc_mod_inv, NULL, + NULL, }, USE_REDC, -- cgit v1.2.1