aboutsummaryrefslogtreecommitdiffstats
path: root/rsaref
Commit message (Collapse)AuthorAgeFilesLines
* Remove RSAREF (not used).Ulf Möller2000-11-227-1688/+0
| | | | You can still get the code using tag "rsaref".
* A few more constifications of some RSA routines that I forgotRichard Levitte2000-11-072-2/+2
| | | | yesterday.
* Constify the RSAref glue code.Richard Levitte2000-11-062-22/+28
|
* 'ranlib' doesn't always run on some systems. That's actuallyRichard Levitte2000-09-251-1/+2
| | | | | acceptable, since all that happens if it fails is a library with an index, which makes linking slower, but still working correctly.
* 'make update'Richard Levitte2000-09-071-2/+2
|
* Enable DSO support on alpha (OSF1), cc and gcc.Geoff Thorpe2000-06-131-6/+8
| | | | | | Also, "make update" has added some missing functions to libeay.num, updated the TABLE for the alpha changes, and updated thousands of dependancies that have changed from recent commits.
* In Message-ID: <003201bfb332$14a07520$0801a8c0@janm.transactionsite.com>,Richard Levitte2000-05-021-7/+7
| | | | | | "Jan Mikkelsen" <janm@transactionsite.com> correctly states that the OpenSSL header files have #include's and extern "C"'s in an incorrect order. Thusly fixed.
* Preserve reason strings in automatically build tables.Bodo Möller2000-03-051-1/+2
|
* Tidy up CRYPTO_EX_DATA structures.Dr. Stephen Henson2000-01-231-2/+3
|
* minor change for the prngUlf Möller2000-01-141-1/+2
|
* Make NO_RSA compile with pedantic.Ben Laurie2000-01-081-0/+6
|
* CORE SDI proposed patch doesn't make any sense. Undo.Ulf Möller1999-12-041-20/+0
|
* Oops!Ulf Möller1999-12-041-1/+0
|
* Circumvent an exploitable buffer overrun error in RSA Security's RSAREFUlf Möller1999-12-031-0/+21
| | | | | | | | library. See: http://www.CORE-SDI.COM/english/ssh/index.html Submitted by: Reviewed by: PR:
* Install libRSAglue.a when OpenSSL is build with RSAref.Ralf S. Engelschall1999-08-081-0/+6
| | | | This should now finally make the RSAref users happy...
* VMS updates.Ulf Möller1999-07-281-1/+2
| | | | Submitted by: Richard Levitte <levitte@stacken.kth.se>
* Some constification and stacks that slipped through the cracks (how?).Ben Laurie1999-06-041-3/+4
|
* It was a very bad idea to use #include "../e_os.h" -- when this occursBodo Möller1999-05-211-3/+3
| | | | | | | | | | in cryptlib.h (which is often included as "../cryptlib.h"), then the question remains relative to which directory this is to be interpreted. gcc went one further directory up, as intended; but makedepend thinks differently, and so probably do some C compilers. So the ../ must go away; thus e_os.h goes back into include/openssl (but I now use #include "openssl/e_os.h" instead of <openssl/e_os.h> to make the point) -- and we have another huge bunch of dependency changes. Argh.
* Don't install e_os.h in include/openssl, use it only as a localBodo Möller1999-05-201-3/+3
| | | | include file.
* Update dependencies.Bodo Möller1999-05-151-4/+5
|
* VMS support.Ulf Möller1999-05-133-1/+971
| | | | Submitted by: Richard Levitte <richard@levitte.org>
* C++ bug fix.Ulf Möller1999-05-051-0/+4
| | | | Submitted by: Franco Papacella <franco@arpage.ch>
* Support INSTALL_PREFIX for packagers.Bodo Möller1999-04-291-2/+4
| | | | | | Submitted by: Reviewed by: PR:
* Ignore Makefile.saveUlf Möller1999-04-291-0/+1
| | | | Submitted by: Anonymous
* Obey $(PERL) when running util/mklink.pl.Bodo Möller1999-04-291-3/+3
| | | | | | Submitted by: Reviewed by: PR:
* Use util/mklink.pl instead of util/mklink.sh.Bodo Möller1999-04-281-3/+3
| | | | | | Submitted by: Reviewed by: PR:
* New Configure option no-<cipher> (rsa, idea, rc5, ...).Ulf Möller1999-04-272-1/+4
|
* Remove NOPROTO definitions and error code comments.Ulf Möller1999-04-262-53/+0
|
* Change the command line options of mkerr.pl so -static is now default andDr. Stephen Henson1999-04-241-3/+2
| | | | | a -write option is needed to actually change anything. Second attempt at getting rid of ERR, ERRC definitions: it might even work this time :-)
* Restore ERRC definitions that are needed to compile the library.Bodo Möller1999-04-241-0/+1
| | | | | | | | | | Submitted by: Reviewed by: PR: Submitted by: Reviewed by: PR:
* Delete the unnecessary ERR and ERRC lines in makefiles, add some functionalityDr. Stephen Henson1999-04-241-2/+0
| | | | | | | | | | to error code script: it can now find untranslatable function codes (usually because the function is static and not defined in a header: occasionally because of a typo...) and unreferenced function and reason codes. To see this try: perl util/mkerr.pl -recurse -debug Also fixed some typos in crypto/pkcs12 that this found :-) Also tidy up some error calls that had to be all on one line: the old error script couldn't find codes unless the call was all on one line.
* Complete rewrite of the error code generation script. It now runs as a singleDr. Stephen Henson1999-04-244-110/+64
| | | | | | | script, translates function codes better and doesn't need the K&R function prototypes to work (NB. the K&R prototypes can't be wiped just yet: they are still needed by the DEF generator...). I also ran the script with the -rewrite option to update all the header and source files.
* "make depend"Bodo Möller1999-04-231-7/+10
| | | | | | Submitted by: Reviewed by: PR:
* Change #include filenames from <foo.h> to <openssl.h>.Bodo Möller1999-04-234-10/+10
| | | | | | Submitted by: Reviewed by: PR:
* Work with -pedantic!Ben Laurie1999-04-231-6/+7
|
* Change functions to ANSI C.Ulf Möller1999-04-192-50/+21
|
* Test PKCS#1 v1.5 padding as well.Ulf Möller1999-04-091-2/+10
|
* New Makefile variables $(RANLIB) and $(PERL).Ulf Möller1999-04-011-5/+5
|
* Make sure the RSA OAEP test is skipped under -DRSAref becauseRalf S. Engelschall1999-03-251-0/+3
| | | | | | | OAEP isn't supported when OpenSSL is built with RSAref. Submitted by: Ulf Moeller <ulf@fitug.de> Reviewed by: Ralf S. Engelschall
* Fix security hole.Ben Laurie1999-03-221-5/+5
|
* Put the dependencies back.Ben Laurie1999-03-061-0/+7
|
* General source tree makefile cleanups: Made `making xxx in yyy...' displayRalf S. Engelschall1999-03-061-13/+5
| | | | | | | | consistent in the source tree and replaced `/bin/rm' by `rm'. Additonally cleaned up the `make links' target: Remove unnecessary semicolons, subsequent redundant removes, inline point.sh into mklink.sh to speed processing and no longer clutter the display with confusing stuff. Instead only the actually done links are displayed.
* This time, get it right.Ben Laurie1999-01-191-4/+5
|
* Finally lay dependencies to rest (I hope!).Ben Laurie1999-01-191-1/+7
|
* New err_code.pl script to retain old error codes. This should allow the useDr. Stephen Henson1999-01-181-1/+3
| | | | | of 'make errors' without causing huge re-organisations of files when a new code is added.
* Fix parameters to dummy function BN_ref_mod_exp().Dr. Stephen Henson1999-01-141-2/+3
|
* Incorporation of RSEs assembled patchesRalf S. Engelschall1998-12-221-2/+2
|
* Various cleanups and fixed by Marc and Ralf to start the OpenTLS projectRalf S. Engelschall1998-12-221-0/+1
|
* Import of old SSLeay release: SSLeay 0.9.1b (unreleased)Ralf S. Engelschall1998-12-211-2/+2
|
* Import of old SSLeay release: SSLeay 0.9.0bRalf S. Engelschall1998-12-215-33/+41
|