aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/x509v3/v3_akey.c
Commit message (Collapse)AuthorAgeFilesLines
* Use sk_*_new_null() instead of sk_*_new(NULL), since that takes careRichard Levitte2000-09-171-1/+1
| | | | | of complaints from the compiler about data pointers and function pointers not being compatible with each other.
* There have been a number of complaints from a number of sources that namesRichard Levitte2000-06-011-3/+3
| | | | | | | | | like Malloc, Realloc and especially Free conflict with already existing names on some operating systems or other packages. That is reason enough to change the names of the OpenSSL memory allocation macros to something that has a better chance of being unique, like prepending them with OPENSSL_. This change includes all the name changes needed throughout all C files.
* Seek out and destroy another evil cast.Ulf Möller2000-01-301-1/+1
|
* Replace the macros in asn1.h with function equivalents. Also make UTF8StringsDr. Stephen Henson1999-10-201-5/+5
| | | | tolerated in certificates.
* Implement STACK_OF(ANS1_OBJECT) for extended key usage extension, change theDr. Stephen Henson1999-06-211-2/+2
| | | | | documentation to reflect the STACK_OF(CONF_VALUE) change to the CONF lib and use ANSI typedefs for X509V3_EXT_I2D and X509V3_EXT_FREE.
* Convert the CONF library to use a typesafe stack: a STACK_OF(CONF_VALUE). ItDr. Stephen Henson1999-06-201-7/+9
| | | | | | seemed like a good idea at the time... several hours later it was rather obvious that these are used all over the place making the changes rather extensive.
* Remove NOPROTO definitions and error code comments.Ulf Möller1999-04-261-13/+0
|
* Change #include filenames from <foo.h> to <openssl.h>.Bodo Möller1999-04-231-4/+4
| | | | | | Submitted by: Reviewed by: PR:
* Various fixes so Win32 compile may work. Convert GeneralNames to use safe stack.Dr. Stephen Henson1999-04-201-5/+5
|
* Change functions to ANSI C.Ulf Möller1999-04-191-18/+9
|
* Add initial support for Thawte strong extranet certificate extensions andDr. Stephen Henson1999-03-271-1/+1
| | | | include an 'indent' option to V3 stuff.
* Add an extra 'raw' function r2i to the extension code. Nothing uses this yet andDr. Stephen Henson1999-03-061-1/+1
| | | | | | it is just a place holder for functionality to be added later. Its been added now so the X509V3_EXT_METHOD structure shouldn't (hopefully) have to change after the release.
* Various changes to make this stuff compile under Win32 and VC++ with andDr. Stephen Henson1999-02-221-6/+4
| | | | | | | | without -debug option to mk1mf.pl. Change _export to is_export (_export is a reserved word under VC++). Add yucky function prototype function pointer casts. Sanitise the included files in crypto/x509v3. Also changed ssleay.exe target to openssl.exe
* Oops! Remeber to include the other patches this time...Dr. Stephen Henson1999-02-171-0/+86
|
* More extension code. Incomplete support for subject and issuer altDr. Stephen Henson1999-02-101-0/+185
name, issuer and authority key id. Change the i2v function parameters and add an extra 'crl' parameter in the X509V3_CTX structure: guess what that's for :-) Fix to ASN1 macro which messed up IMPLICIT tag and add f_enum.c which adds a2i, i2a for ENUMERATED.