summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/asn1 (follow)
Commit message (Expand)AuthorAgeFilesLines
...
* Place all of the ASN1 M_ macros under #ifndef LIBRESSL_INTERNAL.jsing2015-09-301-30/+37
* Expand M_i2d_ASN1_OCTET_STRING macros - no change in generated assembly,jsing2015-09-301-3/+5
* s/M_ASN1_ENUMERATED_free/ASN1_ENUMERATED_free/jsing2015-09-301-2/+2
* Replace M_ASN1_ENUMERATED_(free|new) with ASN1_ENUMERATED_(free|new).jsing2015-09-301-3/+3
* Replace M_ASN1_OCTET_STRING_(free|new) with ASN1_OCTET_STRING_(free|new).jsing2015-09-304-12/+12
* Replace M_ASN1_UTCTIME_(new|free) with ASN1_UTCTIME_(new|free).jsing2015-09-301-3/+3
* Replace M_ASN1_GENERALIZEDTIME_(new|free) withjsing2015-09-302-5/+5
* Replace M_ASN1_INTEGER_(new|free) with ASN1_INTEGER_(new|free) - this isjsing2015-09-304-14/+14
* Remove unnecessary type assignments - M_ASN1_INTEGER_new() already setsjsing2015-09-301-3/+1
* Replace remaining M_ASN1_BIT_STRING_(new|free) macros with calls tojsing2015-09-291-3/+3
* Correct spelling of OPENSSL_cleanse.jsing2015-09-104-11/+14
* Replace remaining M_ASN1_STRING_* macros with calls to ASN1_STRING_*.jsing2015-09-101-9/+9
* Expand obsolete M_ASN1.*(cmp|dup|print|set) macros - no change in generatedjsing2015-07-295-12/+12
* Expand obsolete M_ASN1_STRING_* macros in asn1_lib.c, apply some style(9)jsing2015-07-291-6/+5
* Less asn1_mac.h - asn1_lib.c does not need it and x_pkey.c should bejsing2015-07-272-10/+5
* Place the ASN.1 template macros (and remaining implement macros) underjsing2015-07-251-3/+6
* Manually expand ASN.1 template macros - only change in generated assemblyjsing2015-07-253-16/+40
* Expand ASN1_ITEM_TEMPLATE/ASN1_EX_TEMPLATE_TYPE/ASN1_ITEM_TEMPLATE_ENDjsing2015-07-244-22/+106
* Expand IMPLEMENT_ASN1_MSTRING macros - the generated assembly only differsjsing2015-07-242-6/+42
* Use V_ASN1_UNDEF instead of -1.miod2015-07-201-7/+7
* Check the return value of asn1_enc_save(). ok bcook@ doug@miod2015-07-201-2/+4
* When freeing an X509_CRL, if freeing the user-maintained meth_data fails,miod2015-07-201-3/+4
* In X509_PKEY_new(), make sure all allocation failures push an error to themiod2015-07-201-7/+15
* Drop stupid (int) casts for the arguments of malloc() and friends. This ismiod2015-07-193-7/+7
* Check the return value of ASN1_STRING_set(), for it may fail to allocatemiod2015-07-181-4/+9
* Enforce V_ASN1_OCTET_STRING type before accessing the object as octet string;miod2015-07-161-2/+4
* Explicitely cast a char into unsigned long before shifting it left by 24, formiod2015-07-161-2/+2
* Fix two theoretical NULL pointer dereferences which can only happen if youmiod2015-07-151-4/+9
* Remove d2i_X509_PKEY and i2d_X509_PKEY from the SSLeay days.doug2015-04-121-41/+1
* Fix several crash causing defects from OpenSSL.tedu2015-03-198-25/+52
* Remove IMPLEMENT_STACK_OF noops.jsing2015-02-221-2/+1
* Regenmiod2015-02-151-123/+124
* Remove asn1_ex_i2c() prototype, now that this function has been made static;miod2015-02-141-2/+1
* Unchecked allocations in x509_name_canon().miod2015-02-141-1/+5
* Memory leak upon error in X509_add1_{trust,reject}_object.miod2015-02-141-7/+23
* Manually expand IMPLEMENT_EXTERN_ASN1 macro (the only occurence in crypto).jsing2015-02-141-3/+10
* Remove IMPLEMENT_COMPAT_ASN1() and related support code. Nothing uses it inmiod2015-02-145-141/+7
* Make asn1_ex_i2c() static. ok jsing@miod2015-02-141-2/+4
* Check i2d_name_canon() for failure (negative return). Coverity CID 78888.miod2015-02-141-6/+8
* Possible NULL pointer dereferences. Coverity CID 21719, 21732.miod2015-02-142-3/+7
* Expand ASN1_CHOICE*, ASN1_SEQUENCE* and associated macros, making thejsing2015-02-141-9/+53
* Spell NULL correctly, be explicit with NULL checks and it is also easier tojsing2015-02-142-10/+6
* prevent a crash with openssl asn1parse -genstr FORMATjsg2015-02-121-1/+5
* Remove initialisers with default values from the ASN1 data structures.jsing2015-02-1117-188/+23
* Expand most of the ASN1_SEQUENCE* and associated macros, making the datajsing2015-02-1117-146/+950
* Enable building with -DOPENSSL_NO_DEPRECATED.doug2015-02-111-1/+2
* unifdef OPENSSL_NO_RFC3779 - this is currently disabled and unlikely tojsing2015-02-101-9/+1
* Remove more IMPLEMENT_STACK_OF noops that have been hiding for the lastjsing2015-02-103-9/+3
* Replace assert() and OPENSSL_assert() calls with proper error return paths.miod2015-02-101-5/+6
* Remove default value initialisers for ASN1_ITEM. Minor changes to generatedjsing2015-02-101-93/+11