summaryrefslogtreecommitdiff
path: root/lib/libcrypto/asn1
AgeCommit message (Expand)Author
2015-04-12Remove d2i_X509_PKEY and i2d_X509_PKEY from the SSLeay days.Doug Hogan
2015-03-19Fix several crash causing defects from OpenSSL.Ted Unangst
2015-02-22Remove IMPLEMENT_STACK_OF noops.Joel Sing
2015-02-15RegenMiod Vallat
2015-02-14Remove asn1_ex_i2c() prototype, now that this function has been made static;Miod Vallat
2015-02-14Unchecked allocations in x509_name_canon().Miod Vallat
2015-02-14Memory leak upon error in X509_add1_{trust,reject}_object.Miod Vallat
2015-02-14Manually expand IMPLEMENT_EXTERN_ASN1 macro (the only occurence in crypto).Joel Sing
2015-02-14Remove IMPLEMENT_COMPAT_ASN1() and related support code. Nothing uses it inMiod Vallat
2015-02-14Make asn1_ex_i2c() static. ok jsing@Miod Vallat
2015-02-14Check i2d_name_canon() for failure (negative return). Coverity CID 78888.Miod Vallat
2015-02-14Possible NULL pointer dereferences. Coverity CID 21719, 21732.Miod Vallat
2015-02-14Expand ASN1_CHOICE*, ASN1_SEQUENCE* and associated macros, making theJoel Sing
2015-02-14Spell NULL correctly, be explicit with NULL checks and it is also easier toJoel Sing
2015-02-12prevent a crash with openssl asn1parse -genstr FORMATJonathan Gray
2015-02-11Remove initialisers with default values from the ASN1 data structures.Joel Sing
2015-02-11Expand most of the ASN1_SEQUENCE* and associated macros, making the dataJoel Sing
2015-02-11Enable building with -DOPENSSL_NO_DEPRECATED.Doug Hogan
2015-02-10unifdef OPENSSL_NO_RFC3779 - this is currently disabled and unlikely toJoel Sing
2015-02-10Remove more IMPLEMENT_STACK_OF noops that have been hiding for the lastJoel Sing
2015-02-10Replace assert() and OPENSSL_assert() calls with proper error return paths.Miod Vallat
2015-02-10Remove default value initialisers for ASN1_ITEM. Minor changes to generatedJoel Sing
2015-02-10Expand IMPLEMENT_ASN1_TYPE macros - no change to generated assembly.Joel Sing
2015-02-10The IMPLEMENT_STACK_OF and IMPLEMENT_ASN1_SET_OF macros were turned intoJoel Sing
2015-02-10Place the IMPLEMENT_ASN1_.*FUNCTION.* macros under an #ifndefJoel Sing
2015-02-10Expand IMPLEMENT_ASN1_ENCODE_FUNCTIONS_fname macros that got missed.Joel Sing
2015-02-10Manually expand ASN1_ITEM_rptr macros that should have been expanded withJoel Sing
2015-02-10Expand the -IMPLEMENT_ASN1_ENCODE_FUNCTIONS_(const_)?fname macros so thatJoel Sing
2015-02-10Expand the IMPLEMENT_ASN1_DUP_FUNCTION macro so that the code is visibleJoel Sing
2015-02-10Expand the IMPLEMENT_ASN1_FUNCTIONS_{const,fname,name} macros so that theJoel Sing
2015-02-09Expand the IMPLEMENT_ASN1_FUNCTIONS macro so that the code is visible andJoel Sing
2015-02-08Check memory allocation results, as well as stack pushes.Miod Vallat
2015-02-07Don't leak addresses in error messages.Miod Vallat
2015-02-07Delete a lot of #if 0 code in libressl.Doug Hogan
2015-01-28Fix a number of issues relating to algorithms in signatures, MostlyBob Beck
2014-11-09GOST crypto algorithms (well, most of them), ported from the removed GOSTMiod Vallat
2014-10-28Check the result of sk_*_push() operations for failure.Miod Vallat
2014-10-22Use arc4random_buf() instead of RAND_bytes() or RAND_pseudo_bytes().Joel Sing
2014-10-12Paranoia: in ASN1_mbstring_ncopy(), check for len < 0 instead of len == -1,Miod Vallat
2014-10-03Use string literals in printf style calls so gcc's -Wformat works.Doug Hogan
2014-09-21a_enum.c used to be a copy of a_int.c with s/INTEGER/ENUMERATED/g , butMiod Vallat
2014-09-21Fix a memory leak in the error path in ASN1_mbstring_ncopy().Miod Vallat
2014-08-08Fix CVE-2014-3508, pretty printing and OID validation:Philip Guenther
2014-07-25BIO_free() returns immediately when the sole input is NULL.Doug Hogan
2014-07-13The bell tolls for BUF_strdup - Start the migration to usingBob Beck
2014-07-13Don't include asn1_mac.h if all you need is asn1.h.Miod Vallat
2014-07-12No need to include asn1_mac.h here.Miod Vallat
2014-07-12A few fixes/improvements:Miod Vallat
2014-07-12Make sure the return value of X509_NAME_oneline(, NULL,) is checked againstMiod Vallat
2014-07-12if (x) FOO_free(x) -> FOO_free(x).Miod Vallat