| Commit message (Expand) | Author | Age | Files | Lines |
* | 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 |
* | use freezero() instead of memset/explicit_bzero + free. Substantially | deraadt | 2017-05-02 | 2 | -9/+4 |
* | Send the function codes from the error functions to the bit bucket, | beck | 2017-01-29 | 3 | -56/+44 |
* | Add ct and nonct versions of BN_mod_inverse for internal use | beck | 2017-01-21 | 1 | -4/+6 |
* | Avoid a side-channel cache-timing attack that can leak the ECDSA private | jsing | 2017-01-05 | 1 | -1/+3 |
* | Explicitly export a list of symbols from libcrypto. | jsing | 2016-12-21 | 1 | -7/+3 |
* | Remove pointless externs - the structs are declared in the same files a | jsing | 2015-10-16 | 1 | -2/+1 |
* | Expand DECLARE_ASN1_ALLOC_FUNCTIONS and DECLARE_ASN1_FUNCTIONS_const | jsing | 2015-10-16 | 1 | -2/+6 |
* | Remove pointless uses of DECLARE_ASN1_ENCODE_FUNCTIONS_const. | jsing | 2015-10-16 | 1 | -2/+1 |
* | Correct spelling of OPENSSL_cleanse. | jsing | 2015-09-10 | 1 | -2/+2 |
* | Expand ASN.1 template macros - no change in generated assembly. | jsing | 2015-07-24 | 1 | -5/+27 |
* | Expand the IMPLEMENT_ASN1_FUNCTIONS_{const,fname,name} macros so that the | jsing | 2015-02-10 | 1 | -2/+26 |
* | Lob a KNF grenade into the ecdsa code. | jsing | 2015-02-08 | 8 | -312/+288 |
* | Delete a lot of #if 0 code in libressl. | doug | 2015-02-07 | 1 | -9/+1 |
* | Fix a number of issues relating to algorithms in signatures, Mostly | beck | 2015-01-28 | 1 | -2/+14 |
* | Make the ECDSA_SIG bowels public. This matches RSA_SIG and DSA_SIG, and we | miod | 2014-11-17 | 2 | -30/+30 |
* | None of these need to include <openssl/rand.h> | jsing | 2014-10-18 | 1 | -2/+1 |
* | if (x) FOO_free(x) -> FOO_free(x). | miod | 2014-07-12 | 1 | -27/+15 |
* | Explicitly include <openssl/opensslconf.h> in every file that references | jsing | 2014-07-10 | 5 | -5/+17 |
* | remove unused, private version strings except SSL_version_str | bcook | 2014-07-09 | 1 | -3/+1 |