| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
| |
|
|
|
|
| |
Submitted by: Travis Vitek <vitek@roguewave.com>
|
| |
|
| |
|
| |
|
|
|
|
|
| |
Changes to have OpenSSL compile on OS/2.
Contributed by "Brian Havard" <brianh@kheldar.apana.org.au>
|
|
|
|
| |
Contributed by "Brian Havard" <brianh@kheldar.apana.org.au>
|
| |
|
|
|
|
| |
RANDs ENGINE reference in ENGINE_cleanup().
|
|
|
|
|
|
|
|
|
|
| |
applications to use EVP. Add missing calls to HMAC_cleanup() and
don't assume HMAC_CTX can be copied using memcpy().
Note: this is almost identical to the patch submitted to openssl-dev
by Verdon Walker <VWalker@novell.com> except some redundant
EVP_add_digest_()/EVP_cleanup() calls were removed and some changes
made to avoid compiler warnings.
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
DEC C only have them declared that way (it doesn't really matter,
since the linker is case-insensitive by default)
|
|
|
|
| |
symbols.
|
|
|
|
|
|
| |
reachable.
It's completely untested for now. To be done in the next few days.
|
| |
|
|
|
|
|
|
|
|
|
| |
For those, unless the environment variables RANDFILE or HOME are
defined (the default case!), RAND_file_name() will return NULL.
This change adds a default HOME for those platforms.
To add a default HOME for any platform, just define DEFAULT_HOME in
the proper place, wrapped in appropriate #ifdef..#endif, in e_os.h.
|
|
|
|
| |
ENGINE code does not return a default, set an error.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
Previously RAND_get_rand_method was returning a non-const pointer, but it
should be const. As with all other such cases, METHOD pointers are stored and
returned as "const". The only methods one should be able to alter are methods
"local" to the relevant code, in which case a non-const handle to the methods
should already exist.
This change has been forced by the constifying of the ENGINE code (before
which RAND_METHOD was the only method pointer in an ENGINE structure that was
not constant).
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
Contributed by Tim Rice <tim@multitalents.net>
|
| |
|
| |
|
|
|
|
|
|
| |
errors can be tolerated, hide the error from 'make'.
This gives shorter output both if ranlib fails and if
it works.
|
|
|
|
|
|
| |
use _emit instead
Pointed out by Jeremy Cooper <jeremy@baymoo.org>
|
|
|
|
|
|
|
| |
Add EC vaporware: change relevant Makefiles and add some empty source
files.
"make update".
|
|
|
|
|
| |
Note that all *_it variables are suddenly non-existant according to
libeay.num. This is a bug that will be corrected. Please be patient.
|
|
|
|
|
| |
to include (but the OpenSSL_0_9_6-stable branche still has
inconsistencies)
|
| |
|
|
|
|
|
|
|
|
| |
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.
|
|
|
|
|
| |
compared to it has the type size_t. Included the needed headers to
make that happen.
|
|
|
|
| |
get a chance to be defined.
|
|
|
|
|
|
|
| |
missed any.
This compiles and runs on Linux, and external applications have no
problems with it. The definite test will be to build this on VMS.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
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.
|
| |
|
| |
|
|
|
|
| |
entropy devices or sockets.
|
|
|
|
|
|
| |
during connect() and other calls. First seen on Unixware-7.
Unify access to EGD-socket for all RAND_egd_*() methods.
|
| |
|
|
|
|
|
| |
Problem reported by "Wolfgang Marczy" <WMarczy@topcall.co.at>
in a message to openssl-dev (19 Dec 2000 13:40:51 +0100).
|
|
|
|
|
|
|
|
|
|
| |
but will verify the signatures on a response
and locate the signers certifcate.
Still needs to implement a proper OCSP certificate
verify.
Fix warning in RAND_egd().
|
|
|
|
|
|
|
| |
only queried when the /dev/[u]random devices did not return enough
entropy. Only the amount of entropy missing to reach the required minimum
is queried, as EGD may be drained.
Queried locations are: /etc/entropy, /var/run/egd-pool
|