summaryrefslogtreecommitdiffstats
path: root/util
AgeCommit message (Collapse)Author
2002-07-17Make mkdir failsafe in case the directories are already presentRichard Levitte
2002-07-17Add support for shared libraries with OS/2.Richard Levitte
PR: 124
2002-07-14Replace 'ecdsaparam' commandline utility by 'ecparam'Bodo Möller
(the same keys can be used for ECC schemes other than ECDSA) and add some new options. Similarly, use string "EC PARAMETERS" instead of "ECDSA PARAMETERS" in 'PEM' format. Fix ec_asn1.c (take into account the desired conversion form). 'make update'. Submitted by: Nils Larsch
2002-07-10Minor typosLutz Jänicke
Submitted by: jufi@nerdnet.de Reviewed by: PR: 138
2002-06-27A few changes to BC-32.pl didn't get properly applied.Richard Levitte
This completes PR 123
2002-06-27Use underscores instead of dashes in temporary file names.Richard Levitte
This is due to weird Borland compilers. Part of PR 123
2002-06-25For some reason, we need to return the full path to perlRichard Levitte
2002-06-20Fix path to find util/pod2man.pl from the execution directory.Lutz Jänicke
Make sure to use the predefined PERL. Submitted by: Bernhard Simon <bs@bsws.zid.tuwien.ac.at> Reviewed by: PR:
2002-06-13make update (adapt libeay.num to the 0.9.7-stable branch)Richard Levitte
2002-06-13Add support for DJGPP.Richard Levitte
PR: 75
2002-06-13Parse directory using both slashes and backslashes as separators.Richard Levitte
Do file copying in term of perl statements instead of using cp. Part of PR: 75
2002-06-10move ECC ASN1 that is not specific to ECDSA into crypto/ec/,Bodo Möller
and make some appropriate changes to the EC library. Submitted by: Nils Larsch
2002-06-05Make perl replacement for dirname, for system that lack the latter.Richard Levitte
PR: 81
2002-06-05On some systems the default "perl" may still be perl4, use the correctLutz Jänicke
version determined by "config" instead.
2002-06-04make update (including adjusting libeay.num in HEAD to the changes in theRichard Levitte
0.9.7-stable libeay.num
2002-05-30pod2man.pl would only remove the first LF from the name.Richard Levitte
2002-05-30Apparently, there are still chances we have to deal with buggy pod2man versions.Richard Levitte
Deal with that by testing any available pod2man and using it if appropriate, and falling back to util/pod2man.pl if none was found.
2002-05-30Our copy of pod2man.pl is old and comparatively broken, so lets remove it.Richard Levitte
PR: 30
2002-05-19Fix Mingw32 asm build: use the UnixDr. Stephen Henson
bignum assembly method of bn-586.pl and co-586.pl which (for some reason) VC++ doesn't use.
2002-05-11values were reset for no reason.Ulf Möller
2002-04-21Add cygwin build script (Corinna Vinschen <vinschen@redhat.com>).Lutz Jänicke
2002-04-20Make sure ec and ecdsa is properly handled in Windows.Richard Levitte
Notified by Bernd Matthes <bernd.matthes@gemplus.com>
2002-04-15get rid of some assignments that have become obsoleteBodo Möller
2002-04-06make update (libeay.num has been edited to match 0.9.7-stable)Richard Levitte
2002-02-28make updateRichard Levitte
2002-02-26make update, after moving around symbols in libeay.num to matchRichard Levitte
0.9.7-stable.
2002-02-20make updateGeoff Thorpe
2002-02-14make update, with libeay.num remade to match the 0.9.7-stable one.Richard Levitte
2002-02-13ECDSA supportBodo Möller
Submitted by: Nils Larsch <nla@trustcenter.de>
2002-02-07If the intended header file doesn't exist, create it.Richard Levitte
2002-02-05'make update'Richard Levitte
2002-01-26I got a request to make the "old des" symbols more closely tied toRichard Levitte
OpenSSL. Adding '_ossl' in the name seems to be a good way to do this.
2002-01-24fix formatting of automatically generated error sectionBodo Möller
2002-01-24New functionsBodo Möller
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).
2002-01-24make updateRichard Levitte
libeay.num got tweaked so the old des symbols would retain their positions.
2002-01-16*** empty log message ***Ulf Möller
2002-01-04synchronize with engine-0.9.6 treeBodo Möller
2002-01-02make updateRichard Levitte
2002-01-02Because Rijndael is more known as AES, use crypto/aes instead ofRichard Levitte
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.
2001-12-11make updateRichard Levitte
2001-11-15Make it possible to build completely static, independent error CRichard Levitte
files.
2001-10-25Remove DES_random_seed() but retain des_random_seed() for now. ChangeRichard Levitte
the docs to reflect this change and correct libeay.num.
2001-10-24Due to an increasing number of clashes between modern OpenSSL andRichard Levitte
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.
2001-10-24make updateRichard Levitte
2001-10-10It seems like gcc does canonicalisation of file names. MoreRichard Levitte
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.
2001-10-10makedepend sometimes produces duplicates. Remove them.Richard Levitte
2001-10-01'make update'Richard Levitte
2001-09-26'make update'Richard Levitte
2001-09-26Two changes:Richard Levitte
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.
2001-09-25Make update to bring in all the cipher/digest-related ENGINE changes.Geoff Thorpe
NB: It looks like mkdef.pl is causing certain cvs wars by continually flipping the order of some definitions ...