aboutsummaryrefslogtreecommitdiffstats
path: root/apps
Commit message (Collapse)AuthorAgeFilesLines
* changes from 0.9.8Nils Larsch2005-05-311-0/+2
|
* include opensslconf.h if OPENSSL_NO_* is usedNils Larsch2005-05-313-2/+6
|
* DJGPP changes. Contributed by Doug Kaufman <dkaufman@rahul.net>Richard Levitte2005-05-302-0/+9
|
* We have some source with \r\n as line ends. DEC C informs about that,Richard Levitte2005-05-291-1/+1
| | | | and I really can't be bothered...
* Update from 0.9.7-stable. Also repatch and rebuild error codes.Dr. Stephen Henson2005-05-281-0/+1
|
* OPENSSL_NO_SHA512 to mask even SHA512_CTX declaration. This is done toAndy Polyakov2005-05-221-2/+14
| | | | | make no-sha512 more effective on platforms, which don't support 64-bit integer type of *any* kind.
* OPENSSL_Applink update.Andy Polyakov2005-05-171-1/+0
|
* Further BUILDENV refinement, further fool-proofing of Makefiles andAndy Polyakov2005-05-161-3/+5
| | | | | [most importantly] put back dependencies accidentaly eliminated in check-in #13342.
* ecc api cleanup; summary:Nils Larsch2005-05-165-183/+156
| | | | | | | | | | - hide the EC_KEY structure definition in ec_lcl.c + add some functions to use/access the EC_KEY fields - change the way how method specific data (ecdsa/ecdh) is attached to a EC_KEY - add ECDSA_sign_ex and ECDSA_do_sign_ex functions with additional parameters for pre-computed values - rebuild libeay.num from 0.9.7
* Implement fixed-window exponentiation to mitigate hyper-threadingBodo Möller2005-05-161-2/+2
| | | | | | | | | | | | timing attacks. BN_FLG_EXP_CONSTTIME requests this algorithm, and this done by default for RSA/DSA/DH private key computations unless RSA_FLAG_NO_EXP_CONSTTIME/DSA_FLAG_NO_EXP_CONSTTIME/ DH_FLAG_NO_EXP_CONSTTIME is set. Submitted by: Matthew D Wood Reviewed by: Bodo Moeller
* Consolidate BUILDENV [idea is to keep all variables in one place].Andy Polyakov2005-05-151-8/+2
|
* Fool-proofing MakefilesAndy Polyakov2005-05-151-3/+1
|
* Make -CSP option work again in pkcs12 utility by checking forDr. Stephen Henson2005-05-151-0/+4
| | | | attribute in EVP_PKEY structure.
* give EC_GROUP_new_by_nid a more meanigful name:Nils Larsch2005-05-103-5/+5
| | | | EC_GROUP_new_by_nid -> EC_GROUP_new_by_curve_name
* improve command line argument checkingNils Larsch2005-05-101-0/+4
| | | | PR: 1061
* Update util/ck_errf.pl script, and have it run automaticallyBodo Möller2005-05-091-0/+13
| | | | | | | | during "make errors" and thus during "make update". Fix lots of bugs that util/ck_errf.pl can detect automatically. Various others of these are still left to fix; that's why "make update" will complain loudly when run now.
* Add prototype.Ben Laurie2005-05-011-0/+2
|
* Fold rules in test/Makefiles [from stable].Andy Polyakov2005-04-301-4/+2
|
* From branch OpenSSL_0_9_7-stable, 2004-08-11 22:34:Richard Levitte2005-04-301-2/+2
| | | | | Another missing module in the VMS build files.I believe this is the last, though...
* All kinds of changes from branch OpenSSL_0_9_7-stableRichard Levitte2005-04-301-7/+46
|
* add 192 bit prime curve to the command line optionsNils Larsch2005-04-291-2/+4
|
* Lots of Win32 fixes for DTLS.Dr. Stephen Henson2005-04-271-2/+2
| | | | | | | | 1. "unsigned long long" isn't portable changed: to BN_ULLONG. 2. The LL prefix isn't allowed in VC++ but it isn't needed where it is used. 2. Avoid lots of compiler warnings about signed/unsigned mismatches. 3. Include new library directory pqueue in mk1mf build system. 4. Update symbols.
* Port prime utility across from stable branch.Dr. Stephen Henson2005-04-263-3/+133
|
* make updateBodo Möller2005-04-261-101/+112
|
* Fixes for signed/unsigned warnings and shadows.Dr. Stephen Henson2005-04-264-5/+5
|
* Add DTLS support.Ben Laurie2005-04-265-34/+248
|
* change prototype of the ecdh KDF: make input parameter const and the outlen ↵Nils Larsch2005-04-231-3/+5
| | | | argument more flexible
* Add debug target, remove cast, note possible bug.Ben Laurie2005-04-231-1/+1
|
* make updateNils Larsch2005-04-221-1/+1
|
* signed vs. unsigned.Richard Levitte2005-04-201-1/+1
|
* Various Win32 and other fixes for warnings and compilation errors.Dr. Stephen Henson2005-04-192-2/+2
| | | | Fix Win32 build system to use 'Makefile' instead of 'Makefile.ssl'.
* const fixesNils Larsch2005-04-153-7/+7
|
* Add emacs cache files to .cvsignore.Richard Levitte2005-04-111-0/+2
|
* const fixesNils Larsch2005-04-072-4/+4
|
* some const fixesNils Larsch2005-04-0519-65/+71
|
* update progs.pl to reflect changes in progs.hNils Larsch2005-04-052-5/+7
|
* use SHA-1 as the default digest for the apps/openssl commandsNils Larsch2005-04-024-4/+4
|
* Give everything prototypes (well, everything that's actually used).Ben Laurie2005-03-315-6/+5
|
* Blow away Makefile.ssl.Ben Laurie2005-03-301-5/+4
|
* add new curves to the loop (with some cleanup from me)Nils Larsch2005-03-201-26/+27
| | | | | Submitted by: Jean-Luc Duval Reviewed by: Nils Larsch
* "make depend". This takes into account the algorithms that are nowBodo Möller2005-03-131-6/+5
| | | | | | | | disabled by default (MDC2 and RC5), which until now were skipped by "make links" and yet supposedly required by some of the Makefiles, meaning that the recent snapshots failed to compile. Problem reported by Nils Larsch.
* Shut whiny make's up.Andy Polyakov2005-02-031-1/+1
|
* Address run-time linker problems: LD_PRELOAD issue on multi-ABI platformsAndy Polyakov2005-02-013-22/+21
| | | | | | and SafeDllSearchMode in Windows. Submitted by: Richard Levitte
* The mix of CFLAGS and LDFLAGS is a bit confusing in my opinion, andRichard Levitte2005-01-261-4/+4
| | | | | | | | | | Makefile.shared was a bit overcomplicated. Make the shell variables LDFLAGS and SHAREDFLAGS in Makefile.shared get the values of $(CFLAGS) or $(LDFLAGS) as appropriate depending on the value the shell variables LDCMD and SHAREDCMD get. That leaves much less chance of confusion, since those pairs of shell variables always are defined together.
* Please BSD make...Andy Polyakov2005-01-251-1/+1
|
* DJGPP update.Andy Polyakov2005-01-042-1/+7
| | | | | PR: 989 Submitted by: Doug Kaufman
* Remove naming conflict between variable and label.Andy Polyakov2004-12-301-4/+4
|
* Prompt for passphrases for PKCS12 input formatDr. Stephen Henson2004-12-291-10/+52
|
* Add functionality needed to process proxy certificates.Richard Levitte2004-12-282-0/+106
|
* Fix s_client so it works without a certificate again.Dr. Stephen Henson2004-12-132-10/+23
|