| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | actually include the prerequisite dependency for BIO instead of doing nastyness | beck | 2015-10-16 | 1 | -5/+2 |
* | remove excessive brackets on pointer math | deraadt | 2015-09-28 | 1 | -8/+8 |
* | Redo 1.25, without the NULL deref. | miod | 2015-09-27 | 1 | -22/+31 |
* | Revert bn_print.c:r1.25 ("handle negative-zero in BN_bn2dec() too") for | sthen | 2015-09-18 | 1 | -31/+22 |
* | Handle negative-zero in BN_bn2dec() too, just like in BN_print(). | deraadt | 2015-09-13 | 1 | -22/+31 |
* | BN does support negative-zero -- BN_print() sets the standard here. | deraadt | 2015-09-13 | 1 | -3/+3 |
* | Remove workaround for old SIMICS toolchain. | miod | 2015-09-12 | 1 | -45/+1 |
* | Remove horribly old and outdated `documentation' for the assembly code. | miod | 2015-09-12 | 1 | -27/+0 |
* | Fixup inter-bank movq/movd operations, emit bytes for pclmulqdq again. | bcook | 2015-09-11 | 2 | -12/+12 |
* | Correct spelling of OPENSSL_cleanse. | jsing | 2015-09-10 | 3 | -8/+9 |
* | typos | miod | 2015-08-18 | 1 | -1/+1 |
* | Avoid an infinite loop that can be triggered by parsing an ASN.1 | jsing | 2015-06-11 | 1 | -3/+8 |
* | Add missing BN_CTX_end() calls. | doug | 2015-04-29 | 3 | -11/+15 |
* | Fix indentation that incorrectly implies a different control flow. | doug | 2015-03-21 | 2 | -6/+9 |
* | Fix CVE-2014-3570: properly calculate the square of a BIGNUM value. | bcook | 2015-02-25 | 3 | -654/+303 |
* | If BN_rand() or BN_pseudo_rand() are called with a NULL rnd argument, | jsing | 2015-02-19 | 1 | -3/+8 |
* | Potential NULL dereference in the error path; Coverity CID 21720 | miod | 2015-02-14 | 1 | -2/+2 |
* | Fix tests that got incorrectly inverted with the BN_CTX_get() return check | jsing | 2015-02-14 | 1 | -5/+5 |
* | Remove unnecessary include of assert.h | miod | 2015-02-10 | 2 | -4/+2 |
* | BN_CTX_get() can fail - consistently check its return value. | jsing | 2015-02-09 | 12 | -110/+140 |
* | Delete a lot of #if 0 code in libressl. | doug | 2015-02-07 | 1 | -12/+1 |
* | deregister; no binary change | jsg | 2014-10-28 | 6 | -23/+23 |
* | Use arc4random_buf() instead of RAND_bytes() or RAND_pseudo_bytes(). | jsing | 2014-10-22 | 2 | -22/+10 |
* | None of these need to include <openssl/rand.h> | jsing | 2014-10-18 | 2 | -6/+2 |
* | if (x) FOO_free(x) -> FOO_free(x). | miod | 2014-07-12 | 5 | -23/+14 |
* | typos | miod | 2014-07-12 | 1 | -1/+1 |
* | Apparently better fix for OpenSSL PR #3397 (Joyent bug #7704), from OpenSSL | miod | 2014-07-11 | 1 | -2/+2 |
* | Make sure BN_sqr never returns negative numbers. | miod | 2014-07-11 | 1 | -1/+2 |
* | Only import cryptlib.h in the four source files that actually need it. | jsing | 2014-07-11 | 25 | -57/+70 |
* | Explicitly include <openssl/opensslconf.h> in every file that references | jsing | 2014-07-10 | 11 | -14/+44 |
* | Stop including standard headers via cryptlib.h - pull in the headers that | jsing | 2014-07-10 | 8 | -13/+25 |
* | Remove leading underscore from _BYTE_ORDER and _{LITTLE,BIG}_ENDIAN, to be | miod | 2014-07-09 | 1 | -2/+2 |
* | remove unused, private version strings except SSL_version_str | bcook | 2014-07-09 | 1 | -3/+1 |
* | When building a BN on the stack in BN_div(), make sure to initialize all its | miod | 2014-06-27 | 1 | -1/+2 |
* | hand-KNF macro the do { } while loops | deraadt | 2014-06-27 | 2 | -11/+16 |
* | Fix incorrect bounds check in amd64 assembly version of bn_mul_mont(); | miod | 2014-06-20 | 2 | -4/+4 |
* | tags as requested by miod and tedu | deraadt | 2014-06-12 | 32 | -30/+32 |
* | malloc() result does not need a cast. | deraadt | 2014-06-07 | 5 | -6/+6 |
* | s/assember/assembler/ before someone gets offended. At the last | deraadt | 2014-06-06 | 8 | -13/+13 |
* | Get the public headers from the official place with <openssl/ > | deraadt | 2014-05-31 | 1 | -1/+1 |
* | more: no need for null check before free | deraadt | 2014-05-30 | 1 | -2/+1 |
* | ok, next pass after review: when possible, put the reallocarray arguments | deraadt | 2014-05-29 | 2 | -6/+6 |
* | convert 53 malloc(a*b) to reallocarray(NULL, a, b). that is 53 | deraadt | 2014-05-29 | 4 | -10/+10 |
* | Everything sane has stdio, and FILE *. we don't need ifdefs for this. | beck | 2014-05-29 | 2 | -6/+0 |
* | calloc instead of malloc/memset. from Benjamin Baier | tedu | 2014-05-25 | 1 | -2/+1 |
* | Almost nothing actually needs to include <openssl/e_os2.h>, however by | jsing | 2014-05-24 | 1 | -1/+2 |
* | Replace (sometimes conditional) use of alloca with malloc, and clearing | miod | 2014-05-23 | 2 | -39/+16 |
* | if (x) free(x) -> free(x); semantic patch generated with coccinelle, carefully | miod | 2014-05-22 | 2 | -12/+6 |
* | Stop being a dummy... presumably these are left overs from pedantic mode | jsing | 2014-05-15 | 1 | -2/+0 |
* | knfectomie. | jsing | 2014-05-08 | 1 | -653/+818 |