Age | Commit message (Expand) | Author |
2023-05-04 | Rewrite ECParameters_dup() | Theo Buehler |
2023-04-25 | GF2m bites the dust. It won't be missed. | Theo Buehler |
2023-04-13 | ec_lib.c: fix a few NULL misspellings | Theo Buehler |
2023-04-13 | Fix various early return issues spotted by coverity | Theo Buehler |
2023-04-11 | Handle BN_CTX at the EC API boundary. | Joel Sing |
2023-03-27 | Replace the remaining BN_copy() with bn_copy() | Theo Buehler |
2023-03-08 | Fix previous. | Joel Sing |
2023-03-08 | Always clear EC groups and points on free. | Joel Sing |
2023-03-07 | Call BN_free() instead of BN_clear_free(). | Joel Sing |
2023-02-07 | libcrypto/ec: another missing point-on-curve check | Theo Buehler |
2022-11-26 | Make internal header file names consistent | Theo Buehler |
2022-11-19 | Fix an annoying quirk in the EC code | Theo Buehler |
2022-04-07 | Avoid infinite loop for custom curves of order 1 | Theo Buehler |
2022-03-29 | Bound cofactor in EC_GROUP_set_generator() | Theo Buehler |
2022-03-29 | Do not zero cofactor on ec_guess_cofactor() success | Theo Buehler |
2022-03-29 | Zap trailing whitespace | Theo Buehler |
2021-09-12 | Default to using named curve parameter encoding | Theo Buehler |
2021-09-08 | Prepare to provide EC_GROUP_order_bits() | Theo Buehler |
2021-04-20 | Compare function pointers against NULL, not 0. | Theo Buehler |
2021-04-20 | Provide EC_POINT_{g,s}et_Jprojective_coordinates for internal use | Theo Buehler |
2021-04-20 | Compare function pointers against NULL, not 0. | Theo Buehler |
2021-04-20 | Prepare to provide EC_POINT_{g,s}et_affine_coordinates | Theo Buehler |
2021-04-20 | Compare function pointers against NULL, not 0. | Theo Buehler |
2021-04-20 | Prepare to provide EC_GROUP_{get,set}_curve(3) | Theo Buehler |
2020-12-04 | Move point-on-curve check to set_affine_coordinates | Theo Buehler |
2019-09-29 | If a NULL or zero cofactor is passed to EC_GROUP_set_generator(), | Theo Buehler |
2018-11-06 | unrevert the use of bn_rand_interval(). | Theo Buehler |
2018-11-05 | Implement coordinate blinding for EC_POINT. | Theo Buehler |
2018-07-16 | Recommit Billy Brumley's ECC constant time patch with a fix for sparc64 | Theo Buehler |
2018-07-15 | recommit label indentation part of the backout; clearly unrelated to the | Theo Buehler |
2018-07-15 | back out ecc constant time changes | Jonathan Gray |
2018-07-10 | Indent labels by a space so they don't obliterate function names in diffs. | Theo Buehler |
2018-07-10 | ECC constant time scalar multiplication support. First step in overhauling | Theo Buehler |
2017-05-02 | use freezero() instead of memset/explicit_bzero + free. Substantially | Theo de Raadt |
2017-01-29 | Send the function codes from the error functions to the bit bucket, | Bob Beck |
2016-09-03 | remove unused variable | Bob Beck |
2016-08-31 | Fix some very unnecessary convoultion. | Bob Beck |
2015-10-13 | Convert ECParameters_dup() from a macro that uses ASN1_dup_of() into an | Joel Sing |
2015-09-10 | Correct spelling of OPENSSL_cleanse. | Joel Sing |
2015-05-20 | No need to check the return value of memcpy() if you actually checked this | Miod Vallat |
2015-04-29 | Add missing BN_CTX_end() calls. | Doug Hogan |
2015-02-09 | BN_CTX_get() can fail - consistently check its return value. | Joel Sing |
2014-07-12 | if (x) FOO_free(x) -> FOO_free(x). | Miod Vallat |
2014-07-10 | Explicitly include <openssl/opensslconf.h> in every file that references | Joel Sing |
2014-07-09 | remove unused, private version strings except SSL_version_str | Brent Cook |
2014-06-12 | tags as requested by miod and tedu | Theo de Raadt |
2014-05-30 | no need for null check before free. from Brendan MacDonell | Ted Unangst |
2014-05-06 | knf approximation | Ted Unangst |
2014-04-17 | Change library to use intrinsic memory allocation functions instead of | Bob Beck |
2014-04-15 | In EC_POINT_invert(), actually check the correct function pointer for NULL | Miod Vallat |