aboutsummaryrefslogtreecommitdiffstats
path: root/util
Commit message (Collapse)AuthorAgeFilesLines
* make updateRichard Levitte2002-02-281-74/+79
|
* make update, after moving around symbols in libeay.num to matchRichard Levitte2002-02-261-74/+77
| | | | 0.9.7-stable.
* make updateGeoff Thorpe2002-02-201-0/+3
|
* make update, with libeay.num remade to match the 0.9.7-stable one.Richard Levitte2002-02-141-63/+63
|
* ECDSA supportBodo Möller2002-02-133-4/+79
| | | | Submitted by: Nils Larsch <nla@trustcenter.de>
* If the intended header file doesn't exist, create it.Richard Levitte2002-02-071-35/+98
|
* 'make update'Richard Levitte2002-02-051-4/+8
|
* I got a request to make the "old des" symbols more closely tied toRichard Levitte2002-01-261-34/+34
| | | | | OpenSSL. Adding '_ossl' in the name seems to be a good way to do this.
* fix formatting of automatically generated error sectionBodo Möller2002-01-241-0/+2
|
* New functionsBodo Möller2002-01-241-1/+4
| | | | | | | | | | | ERR_peek_last_error ERR_peek_last_error_line ERR_peek_last_error_line_data (supersedes ERR_peek_top_error). Rename OPENSSL_NO_OLD_DES_SUPPORT into OPENSSL_DISABLE_OLD_DES_SUPPORT because OPENSSL_NO_... indicates disabled algorithms (according to mkdef.pl).
* make updateRichard Levitte2002-01-241-68/+55
| | | | | libeay.num got tweaked so the old des symbols would retain their positions.
* *** empty log message ***Ulf Möller2002-01-161-1/+1
|
* synchronize with engine-0.9.6 treeBodo Möller2002-01-041-896/+883
|
* make updateRichard Levitte2002-01-021-4/+11
|
* Because Rijndael is more known as AES, use crypto/aes instead ofRichard Levitte2002-01-023-5/+4
| | | | | | | | | | crypto/rijndael. Additionally, I applied the AES integration patch from Stephen Sprunk <stephen@sprunk.org> and fiddled it to work properly with the normal EVP constructs (and incidently work the same way as all other symmetric cipher implementations). This results in an API that looks a lot like the rest of the OpenSSL cipher suite.
* make updateRichard Levitte2001-12-111-0/+1
|
* Make it possible to build completely static, independent error CRichard Levitte2001-11-151-11/+45
| | | | files.
* Remove DES_random_seed() but retain des_random_seed() for now. ChangeRichard Levitte2001-10-251-55/+50
| | | | the docs to reflect this change and correct libeay.num.
* Due to an increasing number of clashes between modern OpenSSL andRichard Levitte2001-10-242-51/+122
| | | | | | | | | | | | libdes (which is still used out there) or other des implementations, the OpenSSL DES functions are renamed to begin with DES_ instead of des_. Compatibility routines are provided and declared by including openssl/des_old.h. Those declarations are the same as were in des.h when the OpenSSL project started, which is exactly how libdes looked at that time, and hopefully still looks today. The compatibility functions will be removed in some future release, at the latest in version 1.0.
* make updateRichard Levitte2001-10-242-0/+8
|
* It seems like gcc does canonicalisation of file names. MoreRichard Levitte2001-10-101-0/+2
| | | | | | | specifically, a starting './' is removed. makedepend doesn't do this, resulting in another possible commit war, so let's fix that by doing a poor mans canonicalisation of file names that gives the same effect as doing dependencies through gcc.
* makedepend sometimes produces duplicates. Remove them.Richard Levitte2001-10-101-0/+3
|
* 'make update'Richard Levitte2001-10-011-2/+4
|
* 'make update'Richard Levitte2001-09-261-47/+50
|
* Two changes:Richard Levitte2001-09-261-2/+11
| | | | | | | | | | | 1. if there are several symbols with the same entry number, sort those symbols in ASCII order. 2. Do not stop reading the header files when "BEGIN ERROR CODES" is found, since mkerr.pl will add a function declaration after that comment. Instead, trigger on "Error codes for the \w+ function", which is the actual start of the error code macros. Additionally, a few more debugging printouts that helped.
* Make update to bring in all the cipher/digest-related ENGINE changes.Geoff Thorpe2001-09-251-8/+27
| | | | | NB: It looks like mkdef.pl is causing certain cvs wars by continually flipping the order of some definitions ...
* "make update".Geoff Thorpe2001-09-251-29/+48
|
* "make update"Geoff Thorpe2001-09-241-1/+1
|
* New function SSL_renegotiate_pending().Bodo Möller2001-09-201-0/+1
| | | | New option SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION.
* Get rid of junk (deleted/renamed function) by rebuildingBodo Möller2001-09-142-803/+798
| | | | based on 0.9.6 tree.
* make updateGeoff Thorpe2001-09-101-2/+2
|
* make engine file names unique in 8.3Ulf Möller2001-09-071-1/+3
|
* "DH_up" had been changed to "DH_up_ref" in libeay.num but the functionGeoff Thorpe2001-09-051-4/+3
| | | | | | declaration and implementation had not. So a recent update recreated the original definition in libeay.num ... this corrects it and changes the "dh" code to the "up_ref" variant.
* Use GCC 2.95/3.0 optimizationUlf Möller2001-09-051-4/+7
|
* Add a "_up" -> "_up_ref" change to libeay.num that was missing from theGeoff Thorpe2001-09-041-2/+2
| | | | recent changes. Also, do the same change to the DSO_up() function.
* Rename recently introduced functions for improved code clarity:Bodo Möller2001-09-031-2/+2
| | | | [DR]SA_up => [DR]SA_up_ref
* Make the necessary changes to work with the recent "ex_data" overhaul.Geoff Thorpe2001-09-011-0/+4
| | | | | | | | | | | See the commit log message for that for more information. NB: X509_STORE_CTX's use of "ex_data" support was actually misimplemented (initialisation by "memset" won't/can't/doesn't work). This fixes that but requires that X509_STORE_CTX_init() be able to handle errors - so its prototype has been changed to return 'int' rather than 'void'. All uses of that function throughout the source code have been tracked down and adjusted.
* make updateUlf Möller2001-09-011-0/+1
|
* "make update"Geoff Thorpe2001-08-261-3/+23
|
* Add first cut symmetric crypto support.Ben Laurie2001-08-181-0/+4
|
* This ghastly hack prevents CVS wars over Kerberos (which is disabled by ↵Ben Laurie2001-08-032-2/+8
| | | | default).
* Make sure the source file is included among the dependencies. This isRichard Levitte2001-07-311-0/+7
| | | | | the norm for 'gcc -M' but not for 'makedepend', and is merely introduced here to avoid commit wars.
* make updateRichard Levitte2001-07-312-2/+15
|
* make updateRichard Levitte2001-07-111-22/+15
| | | | | | | | Note that since some private kssl functions were exported, the simplest way to rebuild the number table was to toss everything that was new since OpenSSL 0.9.6b. This is safe, since those functions have not yet been exported in an OpenSSL release. Beware, people who trust intermediary snapshots!
* make updateRichard Levitte2001-07-111-0/+66
|
* Make sure crypto/krb5/krb5_asn.h is copied to the directory ofRichard Levitte2001-07-111-0/+1
| | | | exported header files.
* Make sure crypto/krb5/krb5_asn.h becomes part of libeay.num.Richard Levitte2001-07-111-0/+1
|
* make updateRichard Levitte2001-07-102-1/+20
|
* Changes to have OpenSSL compile on OS/2.Richard Levitte2001-07-012-0/+102
| | | | Contributed by "Brian Havard" <brianh@kheldar.apana.org.au>
* make updateRichard Levitte2001-06-231-0/+11
|