Age | Commit message (Expand) | Author |
2015-02-08 | Check memory allocation results, as well as stack pushes. | Miod Vallat |
2015-02-07 | Don't leak addresses in error messages. | Miod Vallat |
2015-02-07 | Delete a lot of #if 0 code in libressl. | Doug Hogan |
2015-01-28 | Fix a number of issues relating to algorithms in signatures, Mostly | Bob Beck |
2014-11-09 | GOST crypto algorithms (well, most of them), ported from the removed GOST | Miod Vallat |
2014-10-28 | Check the result of sk_*_push() operations for failure. | Miod Vallat |
2014-10-22 | Use arc4random_buf() instead of RAND_bytes() or RAND_pseudo_bytes(). | Joel Sing |
2014-10-12 | Paranoia: in ASN1_mbstring_ncopy(), check for len < 0 instead of len == -1, | Miod Vallat |
2014-10-03 | Use string literals in printf style calls so gcc's -Wformat works. | Doug Hogan |
2014-09-21 | a_enum.c used to be a copy of a_int.c with s/INTEGER/ENUMERATED/g , but | Miod Vallat |
2014-09-21 | Fix a memory leak in the error path in ASN1_mbstring_ncopy(). | Miod Vallat |
2014-08-08 | Fix CVE-2014-3508, pretty printing and OID validation: | Philip Guenther |
2014-07-25 | BIO_free() returns immediately when the sole input is NULL. | Doug Hogan |
2014-07-13 | The bell tolls for BUF_strdup - Start the migration to using | Bob Beck |
2014-07-13 | Don't include asn1_mac.h if all you need is asn1.h. | Miod Vallat |
2014-07-12 | No need to include asn1_mac.h here. | Miod Vallat |
2014-07-12 | A few fixes/improvements: | Miod Vallat |
2014-07-12 | Make sure the return value of X509_NAME_oneline(, NULL,) is checked against | Miod Vallat |
2014-07-12 | if (x) FOO_free(x) -> FOO_free(x). | Miod Vallat |
2014-07-12 | typos | Miod Vallat |
2014-07-11 | In ASN1_get_object(), reject primitive encodings using the indefinite length | Miod Vallat |
2014-07-11 | In asn1_get_length(), tolerate leading zeroes in BER encoding. | Miod Vallat |
2014-07-11 | Tolerate critical AKID in CRLs; OpenSSL PR #3014 via OpenSSL trunk, and | Miod Vallat |
2014-07-11 | More memory leaks and unchecked allocations; OpenSSL PR #3403 via OpenSSL | 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 | Use size_t as realloc() size argument whenever possible. ok tedu@ | Miod Vallat |
2014-07-10 | Inline the only use of the HEX_SIZE macro and nuke both DECIMAL_SIZE and | Joel Sing |
2014-07-10 | Stop including standard headers via cryptlib.h - pull in the headers that | Joel Sing |
2014-07-10 | make asn1 free safe to call with null pointers of any type. | Ted Unangst |
2014-07-10 | delete some casts. ok miod | Ted Unangst |
2014-07-09 | ASN1_STRING_free can handle NULL, so callers don't need to check. ok miod | Ted Unangst |
2014-07-09 | remove unused, private version strings except SSL_version_str | Brent Cook |
2014-06-27 | Remove M_ASN1_New* macros which are only used in X509_PKEY_new() are obfuscate | Miod Vallat |
2014-06-24 | Unifdef -UNO_SYS_TYPES_H | Miod Vallat |
2014-06-24 | Remove previously commented out wrong code, as well as the comment saying this | Miod Vallat |
2014-06-22 | nuke unused test programs; ok jsing | Theo de Raadt |
2014-06-12 | tags as requested by miod and tedu | Theo de Raadt |
2014-06-09 | do not include dso.h where it is not needed; ok miod | Theo de Raadt |
2014-06-07 | malloc() result does not need a cast. | Theo de Raadt |
2014-06-01 | There is no need for is{upper,lower}() tests before to{lower,uppper}(), | Theo de Raadt |
2014-05-31 | Change the actual default for returned asn1 strings to be utf8 in the code, | Bob Beck |
2014-05-31 | Add a comment documenting where libssl depends upon the current (objectionable) | Miod Vallat |
2014-05-30 | more: no need for null check before free | Theo de Raadt |
2014-05-30 | remove CONST_STRICT. ok beck deraadt | Ted Unangst |
2014-05-30 | no need for null check before free. from Brendan MacDonell | Ted Unangst |
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 | remove unused shit. from Alexander Schrijver | Ted Unangst |
2014-05-24 | We have shared global variables - unifdef OPENSSL_EXPORT_VAR_AS_FUNCTION. | Joel Sing |