aboutsummaryrefslogtreecommitdiffstats
path: root/util/libeay.num
Commit message (Collapse)AuthorAgeFilesLines
* 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.
* synchronize with engine-0.9.6 treeBodo Möller2002-01-041-896/+883
|
* make updateRichard Levitte2002-01-021-4/+11
|
* make updateRichard Levitte2001-12-111-0/+1
|
* 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-241-50/+121
| | | | | | | | | | | | 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-241-0/+6
|
* 'make update'Richard Levitte2001-10-011-2/+4
|
* 'make update'Richard Levitte2001-09-261-47/+50
|
* 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
|
* Get rid of junk (deleted/renamed function) by rebuildingBodo Möller2001-09-141-784/+779
| | | | 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
|
* make updateRichard Levitte2001-07-311-2/+13
|
* make updateRichard Levitte2001-07-111-0/+66
|
* make updateRichard Levitte2001-07-101-0/+14
|
* make updateRichard Levitte2001-06-231-0/+11
|
* Make updateDr. Stephen Henson2001-06-111-0/+1
|
* 'make update'Richard Levitte2001-06-051-2/+6
|
* make updateRichard Levitte2001-05-131-2/+2
|
* Change Win32 to use EXPORT_VAR_AS_FN.Dr. Stephen Henson2001-05-121-0/+5
| | | | | | | | Fix OPENSSL_IMPLEMENT_GLOBAL. Allow Win32 to use EXPORT_VAR_AS_FN in mkdef.pl make update.
* make updateRichard Levitte2001-05-061-1/+38
|
* make updateRichard Levitte2001-04-271-0/+1
|
* "make update"Geoff Thorpe2001-04-261-0/+3
|
* make updateRichard Levitte2001-04-261-0/+1
|
* Make update.Geoff Thorpe2001-04-221-0/+11
|
* I forgot to rename des_encrypt to des_encrypt1 in libeay.num.Richard Levitte2001-03-291-1/+1
|
* Tag EC_GFp_{nist,recp}_method as "NOEXIST" because they haveBodo Möller2001-03-211-2/+2
| | | | not yet been implemented.
* make update.Richard Levitte2001-03-131-578/+582
|
* Sort platforms lexicographically as well. Also, support more than twoRichard Levitte2001-03-021-9/+9
| | | | variants of a symbol.
* Introduce the possibility to access global variables throughRichard Levitte2001-03-021-122/+235
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | functions on platform were that's the best way to handle exporting global variables in shared libraries. To enable this functionality, one must configure with "EXPORT_VAR_AS_FN" or defined the C macro "OPENSSL_EXPORT_VAR_AS_FUNCTION" in crypto/opensslconf.h (the latter is normally done by Configure or something similar). To implement a global variable, use the macro OPENSSL_IMPLEMENT_GLOBAL in the source file (foo.c) like this: OPENSSL_IMPLEMENT_GLOBAL(int,foo)=1; OPENSSL_IMPLEMENT_GLOBAL(double,bar); To declare a global variable, use the macros OPENSSL_DECLARE_GLOBAL and OPENSSL_GLOBAL_REF in the header file (foo.h) like this: OPENSSL_DECLARE_GLOBAL(int,foo); #define foo OPENSSL_GLOBAL_REF(foo) OPENSSL_DECLARE_GLOBAL(double,bar); #define bar OPENSSL_GLOBAL_REF(bar) The #defines are very important, and therefore so is including the header file everywere where the defined globals are used. The macro OPENSSL_EXPORT_VAR_AS_FUNCTION also affects the definition of ASN.1 items, but that structure is a bt different. The largest change is in util/mkdef.pl which has been enhanced with better and easier to understand logic to choose which symbols should go into the Windows .def files as well as a number of fixes and code cleanup (among others, algorithm keywords are now sorted lexicographically to avoid constant rewrites).
* make updateRichard Levitte2001-02-261-32/+33
| | | | | Note that all *_it variables are suddenly non-existant according to libeay.num. This is a bug that will be corrected. Please be patient.
* e_os.h does not belong with the exported headers. Do not put it thereRichard Levitte2001-02-221-4/+4
| | | | | | | | and make all files the depend on it include it without prefixing it with openssl/. This means that all Makefiles will have $(TOP) as one of the include directories.
* 'make update'Richard Levitte2001-02-211-8/+14
|
* Make all configuration macros available for application by makingRichard Levitte2001-02-191-24/+24
| | | | | | | | | | | | sure they are available in opensslconf.h, by giving them names starting with "OPENSSL_" to avoid conflicts with other packages and by making sure e_os2.h will cover all platform-specific cases together with opensslconf.h. I've checked fairly well that nothing breaks with this (apart from external software that will adapt if they have used something like NO_KRB5), but I can't guarantee it completely, so a review of this change would be a good thing.
* make updateRichard Levitte2001-02-191-69/+163
|
* "make update" plus a rewrite of both .num files.Richard Levitte2000-12-291-164/+341
|
* Fix BN_is_... macros.Bodo Möller2000-11-271-0/+8
| | | | | | | Fix BN_gcd. Analyze BN_mod_inverse. Add BN_kronecker. "make update".
* modular arithmeticsBodo Möller2000-11-261-0/+4
| | | | "make update"