summaryrefslogtreecommitdiffstats
path: root/lib/libcrypto/asn1/bio_asn1.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* const for BIO_{new,set}() and most of the BIO_{f,s}_*() family oftb2018-05-011-3/+3
| | | | | | functions. ok beck, jsing
* assign pointer to NULL rather than 0mmcc2015-12-231-2/+2
|
* Replace assert() and OPENSSL_assert() calls with proper error return paths.miod2015-02-101-5/+6
| | | | Careful review, feedback & ok doug@ jsing@
* Stop including standard headers via cryptlib.h - pull in the headers thatjsing2014-07-101-1/+3
| | | | | | are needed in the source files that actually require them. ok beck@ miod@
* tags as requested by miod and teduderaadt2014-06-121-1/+1
|
* no need for null check before free. from Brendan MacDonelltedu2014-05-301-2/+1
|
* Use C99 initializers for the various FOO_METHOD structs. More readable, andmiod2014-04-271-10/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | avoid unreadable/unmaintainable constructs like that: const EVP_PKEY_ASN1_METHOD cmac_asn1_meth = { EVP_PKEY_CMAC, EVP_PKEY_CMAC, 0, "CMAC", "OpenSSL CMAC method", 0,0,0,0, 0,0,0, cmac_size, 0, 0,0,0,0,0,0,0, cmac_key_free, 0, 0,0 }; ok matthew@ deraadt@
* More KNF.jsing2014-04-191-72/+80
|
* lob a few more knf grenades in here to soften things up.tedu2014-04-181-35/+24
|
* putting most of the braces in the right column is the very least we can do.tedu2014-04-181-66/+66
|
* fix some more leaks, mostly suggestions from miodjsg2014-04-171-1/+3
| | | | ok miod@
* Change library to use intrinsic memory allocation functions instead ofbeck2014-04-171-4/+4
| | | | | | | | OPENSSL_foo wrappers. This changes: OPENSSL_malloc->malloc OPENSSL_free->free OPENSSL_relloc->realloc OPENSSL_freeFunc->free
* import of OpenSSL 0.9.8kdjm2009-04-061-0/+495