diff options
author | Patrick Steuer <patrick.steuer@de.ibm.com> | 2019-08-15 22:51:57 +0200 |
---|---|---|
committer | Patrick Steuer <patrick.steuer@de.ibm.com> | 2019-08-16 12:58:14 +0200 |
commit | 653b883b97f72a15d35d21246696881aa65311e2 (patch) | |
tree | 342add376d1e10a9b2c98ed7bf9d4010d4010a28 /crypto/ec/ecp_nistp224.c | |
parent | Rename ctx_{get,set}_params to {get,set}_ctx_params (diff) | |
download | openssl-653b883b97f72a15d35d21246696881aa65311e2.tar.xz openssl-653b883b97f72a15d35d21246696881aa65311e2.zip |
Fix 9bf682f which broke nistp224_method
Signed-off-by: Patrick Steuer <patrick.steuer@de.ibm.com>
Reviewed-by: Richard Levitte <levitte@openssl.org>
Reviewed-by: Shane Lontis <shane.lontis@oracle.com>
(Merged from https://github.com/openssl/openssl/pull/9607)
Diffstat (limited to 'crypto/ec/ecp_nistp224.c')
-rw-r--r-- | crypto/ec/ecp_nistp224.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/ec/ecp_nistp224.c b/crypto/ec/ecp_nistp224.c index 89ea039b2c..4725e28724 100644 --- a/crypto/ec/ecp_nistp224.c +++ b/crypto/ec/ecp_nistp224.c @@ -291,10 +291,10 @@ const EC_METHOD *EC_GFp_nistp224_method(void) ec_key_simple_generate_public_key, 0, /* keycopy */ 0, /* keyfinish */ + ecdh_simple_compute_key, ecdsa_simple_sign_setup, ecdsa_simple_sign_sig, ecdsa_simple_verify_sig, - ecdh_simple_compute_key, 0, /* field_inverse_mod_ord */ 0, /* blind_coordinates */ 0, /* ladder_pre */ |