| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Delete a lot of #if 0 code in libressl. | doug | 2015-02-07 | 7 | -98/+7 |
* | Fix a number of issues relating to algorithms in signatures, Mostly | beck | 2015-01-28 | 3 | -3/+25 |
* | GOST crypto algorithms (well, most of them), ported from the removed GOST | miod | 2014-11-09 | 1 | -2/+12 |
* | Check the result of sk_*_push() operations for failure. | miod | 2014-10-28 | 1 | -3/+9 |
* | Use arc4random_buf() instead of RAND_bytes() or RAND_pseudo_bytes(). | jsing | 2014-10-22 | 3 | -14/+13 |
* | Paranoia: in ASN1_mbstring_ncopy(), check for len < 0 instead of len == -1, | miod | 2014-10-12 | 1 | -2/+2 |
* | Use string literals in printf style calls so gcc's -Wformat works. | doug | 2014-10-03 | 1 | -3/+2 |
* | a_enum.c used to be a copy of a_int.c with s/INTEGER/ENUMERATED/g , but | miod | 2014-09-21 | 1 | -4/+9 |
* | Fix a memory leak in the error path in ASN1_mbstring_ncopy(). | miod | 2014-09-21 | 1 | -19/+29 |
* | Fix CVE-2014-3508, pretty printing and OID validation: | guenther | 2014-08-08 | 1 | -10/+21 |
* | BIO_free() returns immediately when the sole input is NULL. | doug | 2014-07-25 | 1 | -3/+2 |
* | The bell tolls for BUF_strdup - Start the migration to using | beck | 2014-07-13 | 2 | -8/+8 |
* | Don't include asn1_mac.h if all you need is asn1.h. | miod | 2014-07-13 | 1 | -2/+2 |
* | No need to include asn1_mac.h here. | miod | 2014-07-12 | 1 | -2/+1 |
* | A few fixes/improvements: | miod | 2014-07-12 | 1 | -20/+19 |
* | Make sure the return value of X509_NAME_oneline(, NULL,) is checked against | miod | 2014-07-12 | 2 | -5/+13 |
* | if (x) FOO_free(x) -> FOO_free(x). | miod | 2014-07-12 | 5 | -25/+15 |
* | typos | miod | 2014-07-12 | 1 | -2/+2 |
* | In ASN1_get_object(), reject primitive encodings using the indefinite length | miod | 2014-07-11 | 1 | -1/+4 |
* | In asn1_get_length(), tolerate leading zeroes in BER encoding. | miod | 2014-07-11 | 1 | -5/+8 |
* | Tolerate critical AKID in CRLs; OpenSSL PR #3014 via OpenSSL trunk, and | miod | 2014-07-11 | 1 | -7/+8 |
* | More memory leaks and unchecked allocations; OpenSSL PR #3403 via OpenSSL | miod | 2014-07-11 | 4 | -7/+19 |
* | Only import cryptlib.h in the four source files that actually need it. | jsing | 2014-07-11 | 65 | -209/+234 |
* | Explicitly include <openssl/opensslconf.h> in every file that references | jsing | 2014-07-10 | 12 | -12/+46 |
* | Use size_t as realloc() size argument whenever possible. ok tedu@ | miod | 2014-07-10 | 2 | -6/+8 |
* | Inline the only use of the HEX_SIZE macro and nuke both DECIMAL_SIZE and | jsing | 2014-07-10 | 1 | -2/+2 |
* | Stop including standard headers via cryptlib.h - pull in the headers that | jsing | 2014-07-10 | 24 | -32/+80 |
* | make asn1 free safe to call with null pointers of any type. | tedu | 2014-07-10 | 1 | -4/+3 |
* | delete some casts. ok miod | tedu | 2014-07-10 | 4 | -14/+14 |
* | ASN1_STRING_free can handle NULL, so callers don't need to check. ok miod | tedu | 2014-07-09 | 2 | -10/+7 |
* | remove unused, private version strings except SSL_version_str | bcook | 2014-07-09 | 1 | -2/+1 |
* | Remove M_ASN1_New* macros which are only used in X509_PKEY_new() are obfuscate | miod | 2014-06-27 | 2 | -22/+16 |
* | Unifdef -UNO_SYS_TYPES_H | miod | 2014-06-24 | 3 | -12/+6 |
* | Remove previously commented out wrong code, as well as the comment saying this | miod | 2014-06-24 | 1 | -3/+1 |
* | nuke unused test programs; ok jsing | deraadt | 2014-06-22 | 2 | -46/+2 |
* | tags as requested by miod and tedu | deraadt | 2014-06-12 | 82 | -80/+82 |
* | do not include dso.h where it is not needed; ok miod | deraadt | 2014-06-09 | 1 | -1/+0 |
* | malloc() result does not need a cast. | deraadt | 2014-06-07 | 1 | -1/+1 |
* | There is no need for is{upper,lower}() tests before to{lower,uppper}(), | deraadt | 2014-06-01 | 1 | -23/+6 |
* | Change the actual default for returned asn1 strings to be utf8 in the code, | beck | 2014-05-31 | 1 | -1/+1 |
* | Add a comment documenting where libssl depends upon the current (objectionable) | miod | 2014-05-31 | 1 | -0/+1 |
* | more: no need for null check before free | deraadt | 2014-05-30 | 12 | -46/+23 |
* | remove CONST_STRICT. ok beck deraadt | tedu | 2014-05-30 | 1 | -2/+0 |
* | no need for null check before free. from Brendan MacDonell | tedu | 2014-05-30 | 9 | -28/+14 |
* | convert 53 malloc(a*b) to reallocarray(NULL, a, b). that is 53 | deraadt | 2014-05-29 | 2 | -2/+2 |
* | Everything sane has stdio, and FILE *. we don't need ifdefs for this. | beck | 2014-05-29 | 7 | -20/+0 |
* | remove unused shit. from Alexander Schrijver | tedu | 2014-05-25 | 2 | -4/+2 |
* | We have shared global variables - unifdef OPENSSL_EXPORT_VAR_AS_FUNCTION. | jsing | 2014-05-24 | 2 | -69/+0 |
* | Almost nothing actually needs to include <openssl/e_os2.h>, however by | jsing | 2014-05-24 | 2 | -2/+6 |
* | Expand OPENSSL_{GLOBAL,EXTERN} macros that I missed last time around, | jsing | 2014-05-24 | 2 | -2/+2 |