| Commit message (Expand) | Author | Age | Files | Lines |
* | Move ECDH_OpenSSL() ECDSA_OpenSSL() to *_lib.c | tb | 2023-06-25 | 2 | -15/+15 |
* | Remove {ecdh,ecdsa}_check() and {ECDH,ECDSA}_DATA | tb | 2023-06-25 | 2 | -114/+2 |
* | Remove method wrappers that use {ecdh,ecdsa}_check() | tb | 2023-06-25 | 1 | -52/+10 |
* | ecdsa_do_sign(): remove useless ecdsa_check() call | tb | 2023-06-25 | 1 | -4/+2 |
* | Make ECDH and ECDSA ex_data handlers always fail | tb | 2023-06-25 | 1 | -13/+4 |
* | Make {ECDH,ECDSA}_set_method() always fail | tb | 2023-06-25 | 1 | -15/+2 |
* | Dedoxigenize ecdsa.h | tb | 2023-06-19 | 1 | -133/+5 |
* | Move EC_KEY_{insert,set}_key_method_data() to internal-only | tb | 2023-04-25 | 1 | -2/+4 |
* | Bring includes into canonical order | tb | 2023-04-18 | 1 | -2/+3 |
* | Move some includes out of OPENSSL_NO_DEPRECATED | tb | 2023-04-18 | 1 | -3/+1 |
* | Remove files that definitely contain no code anymore | tb | 2023-04-13 | 2 | -148/+0 |
* | Fold ECDSA sign and verify mess into ecs_ossl.c | tb | 2023-04-13 | 3 | -63/+68 |
* | i2d_ECDSA_SIG() may return a negative value in case of error. Handle | bluhm | 2023-03-30 | 1 | -5/+14 |
* | Replace the remaining BN_copy() with bn_copy() | tb | 2023-03-27 | 1 | -3/+3 |
* | Convert BN_copy() with explicit comparison against NULL to bn_copy() | tb | 2023-03-27 | 1 | -2/+2 |
* | BN_free() is defined in <openssl/bn.h> | tb | 2023-03-25 | 1 | -3/+5 |
* | Call BN_free() instead of BN_clear_free(). | jsing | 2023-03-07 | 3 | -17/+17 |
* | Enforce a lower bound of of EC group order so 80 bits for ECDSA | tb | 2023-03-04 | 1 | -2/+7 |
* | Cap the number of iterations in ECDSA signing | tb | 2023-03-04 | 1 | -1/+15 |
* | spelling fixes; from paul tagliamonte | jmc | 2022-12-26 | 1 | -3/+3 |
* | Make header guards of internal headers consistent | tb | 2022-11-26 | 1 | -4/+4 |
* | Make internal header file names consistent | tb | 2022-11-26 | 6 | -16/+16 |
* | Stop using CBIGNUM_it internal to libcrypto. | jsing | 2022-09-03 | 1 | -3/+3 |
* | Rework DSA_size() and ECDSA_size() | tb | 2022-08-31 | 1 | -25/+22 |
* | Remove mkerr.pl remnants from LibreSSL | kn | 2022-07-12 | 2 | -13/+2 |
* | Replace obj_mac.h with object.h | tb | 2022-06-30 | 1 | -3/+3 |
* | Avoid infinite loop for custom curves of order 1 | tb | 2022-04-07 | 1 | -1/+6 |
* | sort includes as usual | tb | 2022-01-27 | 1 | -2/+2 |
* | Do not depend on engine.h pulling in err.h and evp.h | tb | 2022-01-27 | 2 | -6/+10 |
* | Fix check for BN_mod_inverse_ct return value | inoguchi | 2022-01-20 | 1 | -3/+3 |
* | Move ECDSA_SIG to ecs_locl.h | tb | 2022-01-14 | 2 | -11/+7 |
* | Unifdef LIBRESSL_OPAQUE_* and LIBRESSL_NEXT_API | tb | 2022-01-14 | 1 | -3/+1 |
* | Prepare to provide ECDSA_SIG_get0_{r,s}() | tb | 2022-01-05 | 2 | -2/+19 |
* | Add #include "bn_lcl.h" to the files that will soon need it. | tb | 2021-12-04 | 2 | -2/+5 |
* | Simplify code after adding EC_POINT_{s,g}et_affine_coordinates() | tb | 2021-04-20 | 1 | -33/+8 |
* | Prepare to provide EC_POINT_{g,s}et_affine_coordinates | tb | 2021-04-20 | 1 | -5/+5 |
* | Readability tweak in a comment. | tb | 2019-06-04 | 1 | -2/+2 |
* | Remove the blinding later to avoid leaking information on the length | tb | 2019-06-04 | 1 | -3/+3 |
* | Partial port of EC_KEY_METHOD from OpenSSL 1.1. | tb | 2019-01-19 | 1 | -3/+3 |
* | Partial port of EC_KEY_METHOD from OpenSSL 1.1. | tb | 2019-01-19 | 3 | -30/+64 |
* | Partial port of EC_KEY_METHOD from OpenSSL 1.1. | tb | 2019-01-19 | 4 | -25/+84 |
* | Factor out a bit of ugly code that truncates the digest to the order_bits | tb | 2018-07-10 | 1 | -32/+32 |
* | Tiny tweak to the blinding comment. | tb | 2018-06-16 | 1 | -2/+4 |
* | Basic cleanup. Handle the possibly NULL ctx_in in ecdsa_sign_setup() with | tb | 2018-06-15 | 1 | -67/+62 |
* | Clean up some whitespace and polish a few comments. Reduces noise in | tb | 2018-06-15 | 1 | -24/+21 |
* | Use a blinding value when generating an ECDSA signature, in order to | tb | 2018-06-14 | 1 | -14/+65 |
* | Avoid a timing side-channel leak when generating DSA and ECDSA signatures. | jsing | 2018-06-13 | 1 | -2/+2 |
* | Fix a small timing side channel in ecdsa_sign_setup(). Up to whitespace | tb | 2018-04-28 | 1 | -8/+25 |
* | make ENGINE_finish() succeed on NULL and simplify callers as in | tb | 2018-04-14 | 1 | -8/+5 |
* | Provide ECDSA_SIG_{g,s}et0(). | tb | 2018-03-17 | 2 | -2/+38 |