| Commit message (Expand) | Author | Age | Files | Lines |
* | Rename ecp_smpl.c to ecp_methods.c | tb | 2024-11-12 | 1 | -1656/+0 |
* | EC_POINT_is_at_infinity() returns a boolean | tb | 2024-11-05 | 1 | -10/+10 |
* | affine coordinates: the intention was to move the check, not to copy it... | tb | 2024-11-03 | 1 | -6/+1 |
* | Fix includes in ec_lib and ecp_smpl | tb | 2024-11-02 | 1 | -1/+6 |
* | Merge compressed coordinate setting back into ecp_smpl and ec_lib | tb | 2024-11-02 | 1 | -1/+99 |
* | Retire the oct2point and point2oct EC_METHOD members | tb | 2024-10-31 | 1 | -3/+1 |
* | Make the bn_rand_interval() API a bit more ergonomic | tb | 2023-08-03 | 1 | -2/+2 |
* | Tweak EC_GROUP_check_discriminant() | tb | 2023-07-26 | 1 | -28/+28 |
* | Unindent a big block in EC_GROUP_get_affine_coordinates() | tb | 2023-07-26 | 1 | -32/+34 |
* | Introduce and use ec_encode_scalar() | tb | 2023-07-26 | 1 | -43/+48 |
* | Garbage collect the unused order in check_discriminant() | tb | 2023-07-26 | 1 | -4/+2 |
* | Streamline check_discriminant() | tb | 2023-07-26 | 1 | -14/+6 |
* | Introduce ec_decode_scalar() | tb | 2023-07-26 | 1 | -81/+39 |
* | Use EC_POINT_set_to_infinity() rather than inlining it | tb | 2023-07-26 | 1 | -6/+4 |
* | Fix a few more 0/NULL misspellings | tb | 2023-07-25 | 1 | -8/+8 |
* | Use [a,b), not [a,b-1] in a comment | tb | 2023-07-25 | 1 | -2/+2 |
* | Hide symbols in hkdf, evp, err, ecdsa, and ec | beck | 2023-07-07 | 1 | -1/+2 |
* | whitespace | tb | 2023-06-30 | 1 | -2/+2 |
* | Handle BN_CTX at the EC API boundary. | jsing | 2023-04-11 | 1 | -133/+53 |
* | Replace the remaining BN_copy() with bn_copy() | tb | 2023-03-27 | 1 | -33/+33 |
* | Always clear EC groups and points on free. | jsing | 2023-03-08 | 1 | -19/+1 |
* | Remove EC_FLAGS_DEFAULT_OCT. | jsing | 2023-03-08 | 1 | -2/+5 |
* | Call BN_free() instead of BN_clear_free(). | jsing | 2023-03-07 | 1 | -8/+8 |
* | Move EC_GFp_simple_method() to the bottom of the file. | jsing | 2023-03-07 | 1 | -75/+51 |
* | Make internal header file names consistent | tb | 2022-11-26 | 1 | -3/+3 |
* | Change bn_expand()/bn_wexpand() to indicate failure/success via 0/1. | jsing | 2022-11-24 | 1 | -9/+9 |
* | Fix an annoying quirk in the EC code | tb | 2022-11-19 | 1 | -28/+28 |
* | whitespace | tb | 2022-11-19 | 1 | -7/+7 |
* | Fix check for BN_mod_inverse_ct return value | inoguchi | 2022-01-20 | 1 | -3/+3 |
* | Prepare to provide EC_GROUP_order_bits() | tb | 2021-09-08 | 1 | -1/+2 |
* | Fix indent of EC_METHODs as requested by jsing. | tb | 2021-04-20 | 1 | -33/+33 |
* | Provide EC_POINT_{g,s}et_Jprojective_coordinates for internal use | tb | 2021-04-20 | 1 | -17/+16 |
* | Prepare to provide EC_POINT_{g,s}et_affine_coordinates | tb | 2021-04-20 | 1 | -3/+3 |
* | Port OpenSSL commit 99540ec79491f59ed8b46b4edf130e17dc907f52 -- mitigation | tb | 2018-11-15 | 1 | -4/+4 |
* | unrevert the use of bn_rand_interval(). | tb | 2018-11-06 | 1 | -5/+3 |
* | Unset Z_is_zero after applying coordinate blinding and | tb | 2018-11-06 | 1 | -3/+4 |
* | disable EC_POINT coordinate blinding due to failures in ECDHE and TLS | tb | 2018-11-06 | 1 | -1/+3 |
* | revert use of bn_rand_interval due to failures with ECDHE and TLS | tb | 2018-11-06 | 1 | -3/+5 |
* | Make use of bn_rand_interval() where appropriate. | tb | 2018-11-05 | 1 | -5/+3 |
* | Implement coordinate blinding for EC_POINT. | tb | 2018-11-05 | 1 | -3/+68 |
* | Recommit Billy Brumley's ECC constant time patch with a fix for sparc64 | tb | 2018-07-16 | 1 | -1/+249 |
* | recommit label indentation part of the backout; clearly unrelated to the | tb | 2018-07-15 | 1 | -13/+13 |
* | back out ecc constant time changes | jsg | 2018-07-15 | 1 | -261/+13 |
* | Indent labels by a space so they don't obliterate function names in diffs. | tb | 2018-07-10 | 1 | -13/+13 |
* | ECC constant time scalar multiplication support. First step in overhauling | tb | 2018-07-10 | 1 | -1/+249 |
* | Send the function codes from the error functions to the bit bucket, | beck | 2017-01-29 | 1 | -8/+8 |
* | Add ct and nonct versions of BN_mod_inverse for internal use | beck | 2017-01-21 | 1 | -3/+4 |
* | BN_CTX_get() can fail - consistently check its return value. | jsing | 2015-02-09 | 1 | -43/+58 |
* | Use `> 0' instead of `!= 0' as a successful condition for | miod | 2015-02-08 | 1 | -11/+11 |
* | if (x) FOO_free(x) -> FOO_free(x). | miod | 2014-07-12 | 1 | -27/+14 |