aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/x509v3/v3_skey.c
Commit message (Collapse)AuthorAgeFilesLines
* Change functions to ANSI C.Ulf Möller1999-04-191-11/+6
|
* Fix some warnings. Contributed by Anonymous.Ben Laurie1999-04-161-1/+1
|
* Using int for the digest length in EVP_DigestFinal() broke some compilers.Dr. Stephen Henson1999-03-141-1/+1
| | | | | Changed to unsigned int: also need an evil cast in pk7_doit.c because a signed, unsigned comparison chokes VC++.
* 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-7/+2
| | | | | | | | 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
* More extension code. Incomplete support for subject and issuer altDr. Stephen Henson1999-02-101-0/+171
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.