Age | Commit message (Expand) | Author |
2014-10-28 | deregister; no binary change | Jonathan Gray |
2014-10-22 | Use arc4random_buf() instead of RAND_bytes() or RAND_pseudo_bytes(). | Joel Sing |
2014-10-18 | None of these need to include <openssl/rand.h> | Joel Sing |
2014-07-12 | if (x) FOO_free(x) -> FOO_free(x). | Miod Vallat |
2014-07-12 | typos | Miod Vallat |
2014-07-11 | Apparently better fix for OpenSSL PR #3397 (Joyent bug #7704), from OpenSSL | Miod Vallat |
2014-07-11 | Make sure BN_sqr never returns negative numbers. | Miod Vallat |
2014-07-11 | Only import cryptlib.h in the four source files that actually need it. | Joel Sing |
2014-07-10 | Explicitly include <openssl/opensslconf.h> in every file that references | Joel Sing |
2014-07-10 | Stop including standard headers via cryptlib.h - pull in the headers that | Joel Sing |
2014-07-09 | Remove leading underscore from _BYTE_ORDER and _{LITTLE,BIG}_ENDIAN, to be | Miod Vallat |
2014-07-09 | remove unused, private version strings except SSL_version_str | Brent Cook |
2014-06-27 | When building a BN on the stack in BN_div(), make sure to initialize all its | Miod Vallat |
2014-06-27 | hand-KNF macro the do { } while loops | Theo de Raadt |
2014-06-20 | Fix incorrect bounds check in amd64 assembly version of bn_mul_mont(); | Miod Vallat |
2014-06-12 | tags as requested by miod and tedu | Theo de Raadt |
2014-06-07 | malloc() result does not need a cast. | Theo de Raadt |
2014-06-06 | s/assember/assembler/ before someone gets offended. At the last | Theo de Raadt |
2014-05-31 | Get the public headers from the official place with <openssl/ > | Theo de Raadt |
2014-05-30 | more: no need for null check before free | Theo de Raadt |
2014-05-29 | ok, next pass after review: when possible, put the reallocarray arguments | Theo de Raadt |
2014-05-29 | convert 53 malloc(a*b) to reallocarray(NULL, a, b). that is 53 | Theo de Raadt |
2014-05-29 | Everything sane has stdio, and FILE *. we don't need ifdefs for this. | Bob Beck |
2014-05-25 | calloc instead of malloc/memset. from Benjamin Baier | Ted Unangst |
2014-05-24 | Almost nothing actually needs to include <openssl/e_os2.h>, however by | Joel Sing |
2014-05-23 | Replace (sometimes conditional) use of alloca with malloc, and clearing | Miod Vallat |
2014-05-22 | if (x) free(x) -> free(x); semantic patch generated with coccinelle, carefully | Miod Vallat |
2014-05-15 | Stop being a dummy... presumably these are left overs from pedantic mode | Joel Sing |
2014-05-08 | knfectomie. | Joel Sing |
2014-05-08 | Emergency knfectomie requested by tedu@. | Joel Sing |
2014-05-07 | with the first bug it uncovered fixed, clear all bignums again. | Ted Unangst |
2014-05-07 | in BN_clear_free, don't cleanse the data if the static data flag is set. | Ted Unangst |
2014-05-07 | revert, thanks sthen | Ted Unangst |
2014-05-05 | inspired by a cloudflare diff, cleanse old memory when expanding a bignum. | Ted Unangst |
2014-05-03 | typos | Miod Vallat |
2014-05-02 | More use of 64-bit registers which needs to be disabled under OpenBSD. | Miod Vallat |
2014-05-01 | Do not output SOM-specific directives. | Miod Vallat |
2014-05-01 | Fix include filename to get register name aliases under BSD | Miod Vallat |
2014-05-01 | Pass -Werror in the !BN_LLONG !BN_UMULT_LOHI !BN_UMULT_HIGH case. | Miod Vallat |
2014-05-01 | dead meat | Miod Vallat |
2014-04-30 | First pass at removing win64 support from the assembly generating Perl | Joel Sing |
2014-04-28 | Remove WIN32, WIN64 and MINGW32 tentacles. | Miod Vallat |
2014-04-24 | Try to clean the maze of <openssl/bn.h> defines regarding the BN internals. | Miod Vallat |
2014-04-23 | One last Dec C tentacle on alpha. | Miod Vallat |
2014-04-23 | When I grow up, I want to write workaround for long long multiplications | Miod Vallat |
2014-04-23 | Remove IRIX_CC_BUG workaround. | Miod Vallat |
2014-04-23 | I'm glad to know that Ultrix CC has a bug optimizing switch() statements | Miod Vallat |
2014-04-23 | Unifdef -UPEDANTIC. ok beck@ tedu@ | Miod Vallat |
2014-04-22 | Remove meat which either duplicates code found in apps/, or is only of value | Miod Vallat |
2014-04-20 | theo found a file we don't seem to need, but just in case, i will paste | Ted Unangst |