From a60bb43ba730ae6d2d64a6568ee5fddecaf151e3 Mon Sep 17 00:00:00 2001 From: tb <> Date: Fri, 28 Jul 2023 08:49:43 +0000 Subject: Make extended ECDSA signing routines internal ECDSA_sign_setup() permits precomputing the values of the inverse of the random k and the corresponding r. These can then be fed into the signing routines ECDSA_{do_,}sign_ex() multiple times if needed. This is not a great idea and the interface adds a lot of unwanted complexity. Not to mention that nothing ever used this correctly - if s works out to 0, a special error code is thrown requesting that the caller provide new kinv and r values. Unsurprisingly, nobody ever checked for that special error code. ok jsing This commit marks the start of a libcrypto major bump. Do not build the tree until I bumped the shlib_version and synced file sets (in about 35 commits). --- src/lib/libcrypto/Symbols.list | 3 --- 1 file changed, 3 deletions(-) (limited to 'src/lib/libcrypto/Symbols.list') diff --git a/src/lib/libcrypto/Symbols.list b/src/lib/libcrypto/Symbols.list index 626cd78b3b..00d9cfa65e 100644 --- a/src/lib/libcrypto/Symbols.list +++ b/src/lib/libcrypto/Symbols.list @@ -1028,7 +1028,6 @@ ECDSA_SIG_it ECDSA_SIG_new ECDSA_SIG_set0 ECDSA_do_sign -ECDSA_do_sign_ex ECDSA_do_verify ECDSA_get_default_method ECDSA_get_ex_data @@ -1037,8 +1036,6 @@ ECDSA_set_default_method ECDSA_set_ex_data ECDSA_set_method ECDSA_sign -ECDSA_sign_ex -ECDSA_sign_setup ECDSA_size ECDSA_verify ECPARAMETERS_free -- cgit v1.2.3-55-g6feb