| Commit message (Expand) | Author | Age | Files | Lines |
| * | Make BN_is_zero() check word values. | jsing | 2023-02-14 | 1 | -4/+9 |
| * | Reimplement BN_num_bits_word(). | jsing | 2023-02-14 | 1 | -20/+25 |
| * | Make BN_set_negative() closer to constant time. | jsing | 2023-02-14 | 1 | -2/+3 |
| * | Simplify BN_set_negative(). | jsing | 2023-02-13 | 1 | -6/+3 |
| * | Greatly simplify bn_expand_internal(). | jsing | 2023-01-14 | 1 | -103/+26 |
| * | Rewrite/simplify BN_free(). | jsing | 2023-01-07 | 1 | -10/+12 |
| * | Flip BN_clear_free() and BN_free() | jsing | 2023-01-07 | 1 | -4/+4 |
| * | Use calloc() in BN_new(), rather than malloc() and then manually zeroing. | jsing | 2023-01-07 | 1 | -10/+7 |
| * | Simplify BN_cmp() and BN_ucmp(). | jsing | 2022-12-23 | 1 | -46/+15 |
| * | Provide BN_zero()/BN_one() as functions and make BN_zero() always succeed. | jsing | 2022-12-17 | 1 | -3/+14 |
| * | Rewrite bn_correct_top(). | jsing | 2022-11-30 | 1 | -1/+8 |
| * | Fix return values bug in BN_ucmp(). | jsing | 2022-11-30 | 1 | -4/+6 |
| * | Mop up more BN_DEBUG related code. | jsing | 2022-11-30 | 1 | -6/+1 |
| * | Make internal header file names consistent | tb | 2022-11-26 | 1 | -2/+2 |
| * | Remove BIGNUM consistency macros. | jsing | 2022-11-26 | 1 | -32/+1 |
| * | Change bn_expand()/bn_wexpand() to indicate failure/success via 0/1. | jsing | 2022-11-24 | 1 | -18/+18 |
| * | Use bn_wexpand() rather than bn_expand() with sizeof(BN_ULONG). | jsing | 2022-11-23 | 1 | -2/+2 |
| * | Ensure that bn_expand()/bn_wexpand() fail on negative sizes. | jsing | 2022-11-23 | 1 | -1/+7 |
| * | Turn bn_wexpand() into a function. | jsing | 2022-11-23 | 1 | -2/+11 |
| * | Move bn_expand() under bn_expand2(). | jsing | 2022-11-23 | 1 | -13/+13 |
| * | Remove unused bn_dup_expand(). | jsing | 2022-11-23 | 1 | -53/+1 |
| * | Move #ifndef OPENSSL_NO_DEPRECATED. | jsing | 2022-11-23 | 1 | -21/+21 |
| * | Prepare to provide BN_security_bits() | tb | 2022-06-27 | 1 | -1/+32 |
| * | Pull BN_{new,init,clear,clear_free,free} up to the top of bn_lib.c | jsing | 2021-12-27 | 1 | -58/+58 |
| * | Implement the BN_is_negative macro as a function | tb | 2021-12-04 | 1 | -1/+7 |
| * | Provide function implementations for various BN_* macros | tb | 2021-12-04 | 1 | -1/+39 |
| * | Provide replacement functions for the BN_{get,set,with}_flags() macros. | tb | 2021-12-04 | 1 | -1/+25 |
| * | Provide replacement functions for the BN_GENCB_set{,_old}() macros | tb | 2021-12-04 | 1 | -1/+19 |
| * | Prepare to provide BN_bn2{,le}binpad() and BN_lebin2bn() | tb | 2021-09-08 | 1 | -8/+131 |
| * | Make BN_num_bits_word() constant time. | tb | 2019-06-17 | 1 | -48/+18 |
| * | Add range checks to varios ASN1_INTEGER functions to ensure the | beck | 2019-03-23 | 1 | -1/+3 |
| * | Use a size_t instead of an int for the byte count in BN_swap_ct(). | tb | 2018-07-23 | 1 | -6/+9 |
| * | Eliminate the weird condition in the BN_swap_ct() API that at most one bit | tb | 2018-07-13 | 1 | -3/+3 |
| * | Sync comment | kn | 2018-07-11 | 1 | -3/+5 |
| * | Turn yesterday's optimistic ! in an XXX comment into a more cautious ? | tb | 2018-07-11 | 1 | -2/+2 |
| * | Provide BN_swap_ct(), a constant time function that conditionally swaps | tb | 2018-07-10 | 1 | -1/+49 |
| * | Use explicit_bzero() rather than memset() when clearing a BIGNUM. | jsing | 2018-05-12 | 1 | -2/+2 |
| * | Provide BN_GENCB_new(), BN_GENCB_free() and BN_GENCB_get_arg() | jsing | 2018-02-20 | 1 | -1/+26 |
| * | use freezero() instead of memset/explicit_bzero + free. Substantially | deraadt | 2017-05-02 | 1 | -9/+5 |
| * | Send the function codes from the error functions to the bit bucket, | beck | 2017-01-29 | 1 | -6/+5 |
| * | 'accomodate' -> 'accommodate' in comments. | krw | 2016-03-15 | 1 | -2/+2 |
| * | graduate bn_expand() to a real function. the openssl version of this | deraadt | 2016-03-04 | 1 | -1/+13 |
| * | Correct spelling of OPENSSL_cleanse. | jsing | 2015-09-10 | 1 | -4/+4 |
| * | if (x) FOO_free(x) -> FOO_free(x). | miod | 2014-07-12 | 1 | -3/+2 |
| * | Only import cryptlib.h in the four source files that actually need it. | jsing | 2014-07-11 | 1 | -2/+3 |
| * | Explicitly include <openssl/opensslconf.h> in every file that references | jsing | 2014-07-10 | 1 | -1/+3 |
| * | Stop including standard headers via cryptlib.h - pull in the headers that | jsing | 2014-07-10 | 1 | -1/+3 |
| * | remove unused, private version strings except SSL_version_str | bcook | 2014-07-09 | 1 | -3/+1 |
| * | tags as requested by miod and tedu | deraadt | 2014-06-12 | 1 | -1/+1 |
| * | ok, next pass after review: when possible, put the reallocarray arguments | deraadt | 2014-05-29 | 1 | -1/+1 |