summaryrefslogtreecommitdiff
path: root/lib/libcrypto/asn1
AgeCommit message (Expand)Author
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
2014-07-12typosMiod Vallat
2014-07-11In ASN1_get_object(), reject primitive encodings using the indefinite lengthMiod Vallat
2014-07-11In asn1_get_length(), tolerate leading zeroes in BER encoding.Miod Vallat
2014-07-11Tolerate critical AKID in CRLs; OpenSSL PR #3014 via OpenSSL trunk, andMiod Vallat
2014-07-11More memory leaks and unchecked allocations; OpenSSL PR #3403 via OpenSSLMiod Vallat
2014-07-11Only import cryptlib.h in the four source files that actually need it.Joel Sing
2014-07-10Explicitly include <openssl/opensslconf.h> in every file that referencesJoel Sing
2014-07-10Use size_t as realloc() size argument whenever possible. ok tedu@Miod Vallat
2014-07-10Inline the only use of the HEX_SIZE macro and nuke both DECIMAL_SIZE andJoel Sing
2014-07-10Stop including standard headers via cryptlib.h - pull in the headers thatJoel Sing
2014-07-10make asn1 free safe to call with null pointers of any type.Ted Unangst
2014-07-10delete some casts. ok miodTed Unangst
2014-07-09ASN1_STRING_free can handle NULL, so callers don't need to check. ok miodTed Unangst
2014-07-09remove unused, private version strings except SSL_version_strBrent Cook
2014-06-27Remove M_ASN1_New* macros which are only used in X509_PKEY_new() are obfuscateMiod Vallat
2014-06-24Unifdef -UNO_SYS_TYPES_HMiod Vallat
2014-06-24Remove previously commented out wrong code, as well as the comment saying thisMiod Vallat
2014-06-22nuke unused test programs; ok jsingTheo de Raadt
2014-06-12tags as requested by miod and teduTheo de Raadt
2014-06-09do not include dso.h where it is not needed; ok miodTheo de Raadt
2014-06-07malloc() result does not need a cast.Theo de Raadt
2014-06-01There is no need for is{upper,lower}() tests before to{lower,uppper}(),Theo de Raadt
2014-05-31Change the actual default for returned asn1 strings to be utf8 in the code,Bob Beck
2014-05-31Add a comment documenting where libssl depends upon the current (objectionable)Miod Vallat
2014-05-30more: no need for null check before freeTheo de Raadt
2014-05-30remove CONST_STRICT. ok beck deraadtTed Unangst
2014-05-30no need for null check before free. from Brendan MacDonellTed Unangst
2014-05-29convert 53 malloc(a*b) to reallocarray(NULL, a, b). that is 53Theo de Raadt
2014-05-29Everything sane has stdio, and FILE *. we don't need ifdefs for this.Bob Beck
2014-05-25remove unused shit. from Alexander SchrijverTed Unangst
2014-05-24We have shared global variables - unifdef OPENSSL_EXPORT_VAR_AS_FUNCTION.Joel Sing
2014-05-24Almost nothing actually needs to include <openssl/e_os2.h>, however byJoel Sing
2014-05-24Expand OPENSSL_{GLOBAL,EXTERN} macros that I missed last time around,Joel Sing
2014-05-22if (x) free(x) -> free(x); semantic patch generated with coccinelle, carefullyMiod Vallat
2014-05-22KNF.Joel Sing
2014-05-22KNF.Joel Sing
2014-05-22No uses of UTF8_{getc,putc}() in ports, so remove them from the public header.Philip Guenther
2014-05-20Bring UTF8_{getc,putc} up-to-date: it's been a decade since 5- and 6-bytePhilip Guenther
2014-05-18If you need to allocate `a + b' bytes of memory, then don't allocate `a + b*2',Miod Vallat
2014-05-18Make sure UTF8_getc() is invoked with the proper buffer size.Miod Vallat
2014-05-15Fix memory leaks upon failure.Miod Vallat
2014-05-15Replace ASN1_GENERALIZEDTIME_adj(), ASN1_UTCTIME_adj() andMiod Vallat
2014-05-12Bring back ASN1_seq_pack(), ASN1_seq_unpack(), ASN1_pack_string() andMiod Vallat
2014-05-04i give up. reuse problem is unfixable. dlg says puppet crashes.Ted Unangst