Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/openssl/openssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/apps
AgeCommit message (Collapse)Author
2003-09-28Recent changes from 0.9.7-stableRichard Levitte
2003-09-21In order to get the expected self signed error whenDr. Stephen Henson
calling X509_verify_cert() in x509.c the cert should not be added to the trusted store.
2003-09-09Generalise the definition of strcasecmp() and strncasecmp() forRichard Levitte
platforms that don't (necessarely) have it. In the case of VMS, this means moving a couple of functions from apps/ to crypto/ and make them general (although only used privately).
2003-09-08Recent changes from 0.9.7-stable.Richard Levitte
2003-08-14Undo the change that left LD_LIBRARY_PATH unchanged. The errors I sawRichard Levitte
weren't due to that, but to a change on the SCO machines I used for testing, where my $PATH was suddenly incorrect.
2003-08-11- Add a configuration keyword "fips" to compile with FIPSRichard Levitte
implementations. - Reorder the build so the standalone FIPS SHA1 checker is built first. - Add necessary defines to avoid symbol clashes between FIPS and non-FIPS implementations. - Change necessary signatures. - Correct bugs in FIPS build Makefiles. - make update
2003-06-02Various S/MIME bug and compatibility fixes.Dr. Stephen Henson
2003-05-29Add minimum POP3 STLS hack to s_client.c (as was provided for STARTTLS before)Lutz Jänicke
Submitted by: dg@sunet.ru (Daniel Ginsburg) PR: #613
2003-04-09Dont forget req.Richard Levitte
2003-04-08Set LD_LIBRARY_PATH when linking, since OpenUnix' ld uses it to createRichard Levitte
a library search path. Correct typos.
2003-04-03Reset the version number of the issuer certificate? I believe thisRichard Levitte
hasn't been tested in a long while...
2003-03-31No need to test -setalias twice.Richard Levitte
PR: 556
2003-03-31Add usage string for -fingerprint.Richard Levitte
PR: 560
2003-03-26Update ocsp usage message and docs.Dr. Stephen Henson
2003-03-20Make sure that all the library paths are modified in prepend mode, notRichard Levitte
replace mode. PR: 528
2003-03-14Get the PEDANTIC stuff right this time...Dr. Stephen Henson
2003-03-12Avoid warnings for no-engine and PEDANTICDr. Stephen Henson
2003-02-22mingw related cleanups, as in headUlf Möller
2003-02-14Handle krb5 libraries separately and make sure only libssl.so dependsRichard Levitte
on it.
2003-02-14Pay attention to disabled SSL versions.Richard Levitte
PR: 500
2003-02-14Make it possible to disable OCSP, the speed application, and the use of sockets.Richard Levitte
PR: 358
2003-01-30Add the possibility to build without the ENGINE framework.Richard Levitte
PR: 287
2003-01-30cert_sk isn't always allocated, so freeing it may cause a crash.Richard Levitte
PR: 481
2003-01-24Check return value of gmtime() and add error codesDr. Stephen Henson
where it fails in ASN1_TIME_set(). Clear error queue in req.c if *_min or *_max is absent.
2003-01-13DJGPP doesn't have DLLs, so skip adding to %PATH% in that environment.Richard Levitte
PR: 453
2003-01-09Oops, left debugging malloc include file in...Dr. Stephen Henson
2003-01-09NULL tofree when it is freed to avoid double free.Dr. Stephen Henson
Make sure key is not NULL before freeing it.
2003-01-04Add EVP_CIPHER_CTX_cleanup() to avoid memory leak.Dr. Stephen Henson
2002-12-26Spelling error.Richard Levitte
This patch was taken from the OpenBSD copy of OpenSSL 0.9.7 beta3 with patches
2002-12-25Avoid double definition of config.Richard Levitte
PR: 420
2002-12-24Cygwin needs the library locatin for .DLLs to be set in PATH. Unfortunately,Richard Levitte
the conditional was set to add the library directory to PATH when the platform is NOT Cygwin. Corrected. PR: 404
2002-12-20There was a mixup between INSTALLTOP and OPENSSLDIR...Richard Levitte
2002-12-20We stupidly had a separate LIBKRB5 variable for KRB5 library dependencies,Richard Levitte
and then didn't support it very well. And that when there already is a useful variable for exactly this kind of thing; EX_LIBS...
2002-12-19I have no idea what possesed me to compile s_socket.c as POSIXly code.Richard Levitte
Incidently, it now compiles so much better without _POSIX_C_SOURCE.
2002-12-15Update the make system for installations:Richard Levitte
- define a HERE variable to indicate where the source tree is (not used right now) - make more use of copying and making attribute changes to {file}.new, and then move it to {file} - use 'mv -f' to avoid all those questions to the user when the file in question doesn't have write attributes for that user.
2002-12-06Apparently, bash is more forgiving than sh. To be backwardRichard Levitte
compatible, don't use ==, use = instead...
2002-12-05Corrected DJGPP patchRichard Levitte
2002-12-03EXIT() may mean return(). That's confusing, so let's have it really meanRichard Levitte
exit() in whatever way works for the intended platform, and define OPENSSL_EXIT() to have the old meaning (the name is of course because it's only used in the openssl program)
2002-11-28Cleanse memory using the new OPENSSL_cleanse() function.Richard Levitte
I've covered all the memset()s I felt safe modifying, but may have missed some.
2002-11-19Make sure sysconf exists (it doesn't in the VMS C RTL lesser than version 7).Richard Levitte
2002-11-18allocate bio_err before memory debugging is enabled to avoid memory leaksBodo Möller
(we can't release it before the CRYPTO_mem_leaks() call!) Submitted by: Nils Larsch
2002-11-16WinCE patchesRichard Levitte
2002-11-15Changes to make shared library building and use work better with CygwinRichard Levitte
2002-11-14Remove warnings.Richard Levitte
2002-11-14Fix to build better with DJGPP.Richard Levitte
PR: 338 Here's the description, submitted by Gisle Vanem <giva@bgnett.no>: 1. sock_init() renamed to ssl_sock_init() in ./apps/s_socket.c due to name-clash with Watt-32. 2. rand() renamed to Rand() in ./crypto/bn/divtest.c due to name-clash with <stdlib.h> 3. Added calls to dbug_init()/sock_init() in some demo programs. 4. Changed cflags/lflags in configure. Watt-32 install root now taken from $WATT_ROOT.
2002-11-12Many security improvements (CHATS) and a warning fix.Ben Laurie
2002-11-12Variables on the stack must be initialized or we can't depend on anyRichard Levitte
initial value. For errline/errorline, we did depend on that, erroneously
2002-11-11Make the programs link against the static library on MacOS X.Richard Levitte
PR: 335
2002-11-10-CAserial does take a filename argument.Richard Levitte
PR: 332
2002-11-08Windows doesn't know sys/file.hRichard Levitte