Initial import of OpenSSL 0.9.6b
This commit is contained in:
parent
5740a5e34c
commit
26d191b459
@ -2,6 +2,118 @@
|
||||
OpenSSL CHANGES
|
||||
_______________
|
||||
|
||||
Changes between 0.9.6a and 0.9.6b [9 Jul 2001]
|
||||
|
||||
*) Change ssleay_rand_bytes (crypto/rand/md_rand.c)
|
||||
to avoid a SSLeay/OpenSSL PRNG weakness pointed out by
|
||||
Markku-Juhani O. Saarinen <markku-juhani.saarinen@nokia.com>:
|
||||
PRNG state recovery was possible based on the output of
|
||||
one PRNG request appropriately sized to gain knowledge on
|
||||
'md' followed by enough consecutive 1-byte PRNG requests
|
||||
to traverse all of 'state'.
|
||||
|
||||
1. When updating 'md_local' (the current thread's copy of 'md')
|
||||
during PRNG output generation, hash all of the previous
|
||||
'md_local' value, not just the half used for PRNG output.
|
||||
|
||||
2. Make the number of bytes from 'state' included into the hash
|
||||
independent from the number of PRNG bytes requested.
|
||||
|
||||
The first measure alone would be sufficient to avoid
|
||||
Markku-Juhani's attack. (Actually it had never occurred
|
||||
to me that the half of 'md_local' used for chaining was the
|
||||
half from which PRNG output bytes were taken -- I had always
|
||||
assumed that the secret half would be used.) The second
|
||||
measure makes sure that additional data from 'state' is never
|
||||
mixed into 'md_local' in small portions; this heuristically
|
||||
further strengthens the PRNG.
|
||||
[Bodo Moeller]
|
||||
|
||||
*) Fix crypto/bn/asm/mips3.s.
|
||||
[Andy Polyakov]
|
||||
|
||||
*) When only the key is given to "enc", the IV is undefined. Print out
|
||||
an error message in this case.
|
||||
[Lutz Jaenicke]
|
||||
|
||||
*) Handle special case when X509_NAME is empty in X509 printing routines.
|
||||
[Steve Henson]
|
||||
|
||||
*) In dsa_do_verify (crypto/dsa/dsa_ossl.c), verify that r and s are
|
||||
positive and less than q.
|
||||
[Bodo Moeller]
|
||||
|
||||
*) Don't change *pointer in CRYPTO_add_lock() is add_lock_callback is
|
||||
used: it isn't thread safe and the add_lock_callback should handle
|
||||
that itself.
|
||||
[Paul Rose <Paul.Rose@bridge.com>]
|
||||
|
||||
*) Verify that incoming data obeys the block size in
|
||||
ssl3_enc (ssl/s3_enc.c) and tls1_enc (ssl/t1_enc.c).
|
||||
[Bodo Moeller]
|
||||
|
||||
*) Fix OAEP check.
|
||||
[Ulf Möller, Bodo Möller]
|
||||
|
||||
*) The countermeasure against Bleichbacher's attack on PKCS #1 v1.5
|
||||
RSA encryption was accidentily removed in s3_srvr.c in OpenSSL 0.9.5
|
||||
when fixing the server behaviour for backwards-compatible 'client
|
||||
hello' messages. (Note that the attack is impractical against
|
||||
SSL 3.0 and TLS 1.0 anyway because length and version checking
|
||||
means that the probability of guessing a valid ciphertext is
|
||||
around 2^-40; see section 5 in Bleichenbacher's CRYPTO '98
|
||||
paper.)
|
||||
|
||||
Before 0.9.5, the countermeasure (hide the error by generating a
|
||||
random 'decryption result') did not work properly because
|
||||
ERR_clear_error() was missing, meaning that SSL_get_error() would
|
||||
detect the supposedly ignored error.
|
||||
|
||||
Both problems are now fixed.
|
||||
[Bodo Moeller]
|
||||
|
||||
*) In crypto/bio/bf_buff.c, increase DEFAULT_BUFFER_SIZE to 4096
|
||||
(previously it was 1024).
|
||||
[Bodo Moeller]
|
||||
|
||||
*) Fix for compatibility mode trust settings: ignore trust settings
|
||||
unless some valid trust or reject settings are present.
|
||||
[Steve Henson]
|
||||
|
||||
*) Fix for blowfish EVP: its a variable length cipher.
|
||||
[Steve Henson]
|
||||
|
||||
*) Fix various bugs related to DSA S/MIME verification. Handle missing
|
||||
parameters in DSA public key structures and return an error in the
|
||||
DSA routines if parameters are absent.
|
||||
[Steve Henson]
|
||||
|
||||
*) In versions up to 0.9.6, RAND_file_name() resorted to file ".rnd"
|
||||
in the current directory if neither $RANDFILE nor $HOME was set.
|
||||
RAND_file_name() in 0.9.6a returned NULL in this case. This has
|
||||
caused some confusion to Windows users who haven't defined $HOME.
|
||||
Thus RAND_file_name() is changed again: e_os.h can define a
|
||||
DEFAULT_HOME, which will be used if $HOME is not set.
|
||||
For Windows, we use "C:"; on other platforms, we still require
|
||||
environment variables.
|
||||
|
||||
*) Move 'if (!initialized) RAND_poll()' into regions protected by
|
||||
CRYPTO_LOCK_RAND. This is not strictly necessary, but avoids
|
||||
having multiple threads call RAND_poll() concurrently.
|
||||
[Bodo Moeller]
|
||||
|
||||
*) In crypto/rand/md_rand.c, replace 'add_do_not_lock' flag by a
|
||||
combination of a flag and a thread ID variable.
|
||||
Otherwise while one thread is in ssleay_rand_bytes (which sets the
|
||||
flag), *other* threads can enter ssleay_add_bytes without obeying
|
||||
the CRYPTO_LOCK_RAND lock (and may even illegaly release the lock
|
||||
that they do not hold after the first thread unsets add_do_not_lock).
|
||||
[Bodo Moeller]
|
||||
|
||||
*) Change bctest again: '-x' expressions are not available in all
|
||||
versions of 'test'.
|
||||
[Bodo Moeller]
|
||||
|
||||
Changes between 0.9.6 and 0.9.6a [5 Apr 2001]
|
||||
|
||||
*) Fix a couple of memory leaks in PKCS7_dataDecode()
|
||||
@ -2363,7 +2475,7 @@
|
||||
copied!)
|
||||
[Bodo Moeller]
|
||||
|
||||
*) Bugfix: SSL_set_mode ignored its parameter, only SSL_CTX_set_mode
|
||||
*) Bugfix: SSL_set_options ignored its parameter, only SSL_CTX_set_options
|
||||
worked.
|
||||
|
||||
*) Fix problems with no-hmac etc.
|
||||
|
@ -134,6 +134,9 @@ my %table=(
|
||||
# error message.
|
||||
"solaris-x86-gcc","gcc:-O3 -fomit-frame-pointer -m486 -Wall -DL_ENDIAN -DNO_INLINE_ASM::-D_REENTRANT:-lsocket -lnsl -ldl:BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_sol_asm}:dlfcn:gnu-shared:-fPIC:.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)",
|
||||
|
||||
#### Solaris x86 with Sun C setups
|
||||
"solaris-x86-cc","cc:-fast -O -Xa::-D_REENTRANT:-lsocket -lnsl -ldl:BN_LLONG RC4_CHAR RC4_CHUNK DES_PTR DES_UNROLL BF_PTR::::::::::dlfcn:solaris-shared:-KPIC:.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)",
|
||||
|
||||
#### SPARC Solaris with GNU C setups
|
||||
"solaris-sparcv7-gcc","gcc:-O3 -fomit-frame-pointer -Wall -DB_ENDIAN -DBN_DIV2W::-D_REENTRANT:-lsocket -lnsl -ldl:BN_LLONG RC4_CHAR RC4_CHUNK DES_UNROLL BF_PTR::::::::::dlfcn:gnu-shared:-fPIC:.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)",
|
||||
"solaris-sparcv8-gcc","gcc:-mv8 -O3 -fomit-frame-pointer -Wall -DB_ENDIAN -DBN_DIV2W::-D_REENTRANT:-lsocket -lnsl -ldl:BN_LLONG RC4_CHAR RC4_CHUNK DES_UNROLL BF_PTR:asm/sparcv8.o:::::::::dlfcn:gnu-shared:-fPIC:.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)",
|
||||
|
@ -17,6 +17,7 @@ OpenSSL - Frequently Asked Questions
|
||||
[USER] Questions on using the OpenSSL applications
|
||||
|
||||
* Why do I get a "PRNG not seeded" error message?
|
||||
* Why do I get an "unable to write 'random state'" error message?
|
||||
* How do I create certificates or certificate requests?
|
||||
* Why can't I create certificate requests?
|
||||
* Why does <SSL program> fail with a certificate verify error?
|
||||
@ -47,6 +48,7 @@ OpenSSL - Frequently Asked Questions
|
||||
* Why do I get errors about unknown algorithms?
|
||||
* Why can't the OpenSSH configure script detect OpenSSL?
|
||||
* Can I use OpenSSL's SSL library with non-blocking I/O?
|
||||
* Why doesn't my server application receive a client certificate?
|
||||
|
||||
===============================================================================
|
||||
|
||||
@ -55,7 +57,7 @@ OpenSSL - Frequently Asked Questions
|
||||
* Which is the current version of OpenSSL?
|
||||
|
||||
The current version is available from <URL: http://www.openssl.org>.
|
||||
OpenSSL 0.9.6a was released on April 5th, 2001.
|
||||
OpenSSL 0.9.6b was released on July 9th, 2001.
|
||||
|
||||
In addition to the current stable release, you can also access daily
|
||||
snapshots of the OpenSSL development version at <URL:
|
||||
@ -160,6 +162,7 @@ correctly. Many open source operating systems provide a "randomness
|
||||
device" that serves this purpose. On other systems, applications have
|
||||
to call the RAND_add() or RAND_seed() function with appropriate data
|
||||
before generating keys or performing public key encryption.
|
||||
(These functions initialize the pseudo-random number generator, PRNG.)
|
||||
|
||||
Some broken applications do not do this. As of version 0.9.5, the
|
||||
OpenSSL functions that need randomness report an error if the random
|
||||
@ -169,18 +172,36 @@ application you are using. It is likely that it never worked
|
||||
correctly. OpenSSL 0.9.5 and later make the error visible by refusing
|
||||
to perform potentially insecure encryption.
|
||||
|
||||
On systems without /dev/urandom, it is a good idea to use the Entropy
|
||||
Gathering Demon; see the RAND_egd() manpage for details.
|
||||
On systems without /dev/urandom and /dev/random, it is a good idea to
|
||||
use the Entropy Gathering Demon (EGD); see the RAND_egd() manpage for
|
||||
details. Starting with version 0.9.7, OpenSSL will automatically look
|
||||
for an EGD socket at /var/run/egd-pool, /dev/egd-pool, /etc/egd-pool and
|
||||
/etc/entropy.
|
||||
|
||||
Most components of the openssl command line tool try to use the
|
||||
file $HOME/.rnd (or $RANDFILE, if this environment variable is set)
|
||||
for seeding the PRNG. If this file does not exist or is too short,
|
||||
the "PRNG not seeded" error message may occur.
|
||||
Most components of the openssl command line utility automatically try
|
||||
to seed the random number generator from a file. The name of the
|
||||
default seeding file is determined as follows: If environment variable
|
||||
RANDFILE is set, then it names the seeding file. Otherwise if
|
||||
environment variable HOME is set, then the seeding file is $HOME/.rnd.
|
||||
If neither RANDFILE nor HOME is set, versions up to OpenSSL 0.9.6 will
|
||||
use file .rnd in the current directory while OpenSSL 0.9.6a uses no
|
||||
default seeding file at all. OpenSSL 0.9.6b and later will behave
|
||||
similarly to 0.9.6a, but will use a default of "C:" for HOME on
|
||||
Windows systems if the environment variable has not been set.
|
||||
|
||||
[Note to OpenSSL 0.9.5 users: The command "openssl rsa" in version
|
||||
0.9.5 does not do this and will fail on systems without /dev/urandom
|
||||
when trying to password-encrypt an RSA key! This is a bug in the
|
||||
library; try a later version instead.]
|
||||
If the default seeding file does not exist or is too short, the "PRNG
|
||||
not seeded" error message may occur.
|
||||
|
||||
The openssl command line utility will write back a new state to the
|
||||
default seeding file (and create this file if necessary) unless
|
||||
there was no sufficient seeding.
|
||||
|
||||
Pointing $RANDFILE to an Entropy Gathering Daemon socket does not work.
|
||||
Use the "-rand" option of the OpenSSL command line tools instead.
|
||||
The $RANDFILE environment variable and $HOME/.rnd are only used by the
|
||||
OpenSSL command line tools. Applications using the OpenSSL library
|
||||
provide their own configuration options to specify the entropy source,
|
||||
please check out the documentation coming the with application.
|
||||
|
||||
For Solaris 2.6, Tim Nibbe <tnibbe@sprint.net> and others have suggested
|
||||
installing the SUNski package from Sun patch 105710-01 (Sparc) which
|
||||
@ -190,6 +211,18 @@ versions. However, be warned that /dev/random is usually a blocking
|
||||
device, which may have some effects on OpenSSL.
|
||||
|
||||
|
||||
* Why do I get an "unable to write 'random state'" error message?
|
||||
|
||||
|
||||
Sometimes the openssl command line utility does not abort with
|
||||
a "PRNG not seeded" error message, but complains that it is
|
||||
"unable to write 'random state'". This message refers to the
|
||||
default seeding file (see previous answer). A possible reason
|
||||
is that no default filename is known because neither RANDFILE
|
||||
nor HOME is set. (Versions up to 0.9.6 used file ".rnd" in the
|
||||
current directory in this case, but this has changed with 0.9.6a.)
|
||||
|
||||
|
||||
* How do I create certificates or certificate requests?
|
||||
|
||||
Check out the CA.pl(1) manual page. This provides a simple wrapper round
|
||||
@ -543,5 +576,12 @@ requiring a bi-directional message exchange; both SSL_read() and
|
||||
SSL_write() will try to continue any pending handshake.
|
||||
|
||||
|
||||
* Why doesn't my server application receive a client certificate?
|
||||
|
||||
Due to the TLS protocol definition, a client will only send a certificate,
|
||||
if explicitely asked by the server. Use the SSL_VERIFY_PEER flag of the
|
||||
SSL_CTX_set_verify() function to enable the use of client certificates.
|
||||
|
||||
|
||||
===============================================================================
|
||||
|
||||
|
@ -7,8 +7,11 @@
|
||||
|
||||
To install OpenSSL, you will need:
|
||||
|
||||
* make
|
||||
* Perl 5
|
||||
* an ANSI C compiler
|
||||
* a development environment in form of development libraries and C
|
||||
header files
|
||||
* a supported Unix operating system
|
||||
|
||||
Quick Start
|
||||
@ -43,9 +46,6 @@
|
||||
--openssldir=DIR Directory for OpenSSL files. If no prefix is specified,
|
||||
the library files and binaries are also installed there.
|
||||
|
||||
rsaref Build with RSADSI's RSAREF toolkit (this assumes that
|
||||
librsaref.a is in the library search path).
|
||||
|
||||
no-threads Don't try to build with support for multi-threaded
|
||||
applications.
|
||||
|
||||
@ -125,7 +125,7 @@
|
||||
directory, and the binary will be in the "apps" directory.
|
||||
|
||||
If "make" fails, look at the output. There may be reasons for
|
||||
the failure that isn't a problem in OpenSSL itself (like missing
|
||||
the failure that aren't problems in OpenSSL itself (like missing
|
||||
standard headers). If it is a problem with OpenSSL itself, please
|
||||
report the problem to <openssl-bugs@openssl.org> (note that your
|
||||
message will be forwarded to a public mailing list). Include the
|
||||
|
@ -474,19 +474,19 @@ install_docs:
|
||||
$(INSTALL_PREFIX)$(MANDIR)/man3 \
|
||||
$(INSTALL_PREFIX)$(MANDIR)/man5 \
|
||||
$(INSTALL_PREFIX)$(MANDIR)/man7
|
||||
@echo installing man 1 and man 5
|
||||
@for i in doc/apps/*.pod; do \
|
||||
fn=`basename $$i .pod`; \
|
||||
sec=`[ "$$fn" = "config" ] && echo 5 || echo 1`; \
|
||||
if [ "$$fn" = "config" ]; then sec=5; else sec=1; fi; \
|
||||
echo "installing man$$sec/`basename $$i .pod`.$$sec"; \
|
||||
(cd `dirname $$i`; \
|
||||
$(PERL) ../../util/pod2man.pl --section=$$sec --center=OpenSSL \
|
||||
--release=$(VERSION) `basename $$i`) \
|
||||
> $(INSTALL_PREFIX)$(MANDIR)/man$$sec/`basename $$i .pod`.$$sec; \
|
||||
done
|
||||
@echo installing man 3 and man 7
|
||||
@for i in doc/crypto/*.pod doc/ssl/*.pod; do \
|
||||
fn=`basename $$i .pod`; \
|
||||
sec=`[ "$$fn" = "des_modes" ] && echo 7 || echo 3`; \
|
||||
if [ "$$fn" = "des_modes" ]; then sec=7; else sec=3; fi; \
|
||||
echo "installing man$$sec/`basename $$i .pod`.$$sec"; \
|
||||
(cd `dirname $$i`; \
|
||||
$(PERL) ../../util/pod2man.pl --section=$$sec --center=OpenSSL \
|
||||
--release=$(VERSION) `basename $$i`) \
|
||||
|
@ -4,7 +4,7 @@
|
||||
## Makefile for OpenSSL
|
||||
##
|
||||
|
||||
VERSION=0.9.6a
|
||||
VERSION=0.9.6b
|
||||
MAJOR=0
|
||||
MINOR=9.6
|
||||
SHLIB_VERSION_NUMBER=0.9.6
|
||||
@ -476,19 +476,19 @@ install_docs:
|
||||
$(INSTALL_PREFIX)$(MANDIR)/man3 \
|
||||
$(INSTALL_PREFIX)$(MANDIR)/man5 \
|
||||
$(INSTALL_PREFIX)$(MANDIR)/man7
|
||||
@echo installing man 1 and man 5
|
||||
@for i in doc/apps/*.pod; do \
|
||||
fn=`basename $$i .pod`; \
|
||||
sec=`[ "$$fn" = "config" ] && echo 5 || echo 1`; \
|
||||
if [ "$$fn" = "config" ]; then sec=5; else sec=1; fi; \
|
||||
echo "installing man$$sec/`basename $$i .pod`.$$sec"; \
|
||||
(cd `dirname $$i`; \
|
||||
$(PERL) ../../util/pod2man.pl --section=$$sec --center=OpenSSL \
|
||||
--release=$(VERSION) `basename $$i`) \
|
||||
> $(INSTALL_PREFIX)$(MANDIR)/man$$sec/`basename $$i .pod`.$$sec; \
|
||||
done
|
||||
@echo installing man 3 and man 7
|
||||
@for i in doc/crypto/*.pod doc/ssl/*.pod; do \
|
||||
fn=`basename $$i .pod`; \
|
||||
sec=`[ "$$fn" = "des_modes" ] && echo 7 || echo 3`; \
|
||||
if [ "$$fn" = "des_modes" ]; then sec=7; else sec=3; fi; \
|
||||
echo "installing man$$sec/`basename $$i .pod`.$$sec"; \
|
||||
(cd `dirname $$i`; \
|
||||
$(PERL) ../../util/pod2man.pl --section=$$sec --center=OpenSSL \
|
||||
--release=$(VERSION) `basename $$i`) \
|
||||
|
@ -5,6 +5,23 @@
|
||||
This file gives a brief overview of the major changes between each OpenSSL
|
||||
release. For more details please read the CHANGES file.
|
||||
|
||||
Changes between OpenSSL 0.9.6a and OpenSSL 0.9.6b:
|
||||
|
||||
o Security fix: PRNG improvements.
|
||||
o Security fix: RSA OAEP check.
|
||||
o Security fix: Reinsert and fix countermeasure to Bleichbacher's
|
||||
attack.
|
||||
o MIPS bug fix in BIGNUM.
|
||||
o Bug fix in "openssl enc".
|
||||
o Bug fix in X.509 printing routine.
|
||||
o Bug fix in DSA verification routine and DSA S/MIME verification.
|
||||
o Bug fix to make PRNG thread-safe.
|
||||
o Bug fix in RAND_file_name().
|
||||
o Bug fix in compatibility mode trust settings.
|
||||
o Bug fix in blowfish EVP.
|
||||
o Increase default size for BIO buffering filter.
|
||||
o Compatibility fixes in some scripts.
|
||||
|
||||
Major changes between OpenSSL 0.9.6 and OpenSSL 0.9.6a:
|
||||
|
||||
o Security fix: change behavior of OpenSSL to avoid using
|
||||
|
@ -1,7 +1,7 @@
|
||||
|
||||
OpenSSL 0.9.6a 5 Apr 2001
|
||||
OpenSSL 0.9.6b 9 Jul 2001
|
||||
|
||||
Copyright (c) 1998-2000 The OpenSSL Project
|
||||
Copyright (c) 1998-2001 The OpenSSL Project
|
||||
Copyright (c) 1995-1998 Eric A. Young, Tim J. Hudson
|
||||
All rights reserved.
|
||||
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1220,7 +1220,11 @@ EF_ALIGNMENT=0;
|
||||
X509_free(revcert);
|
||||
|
||||
strncpy(buf[0],dbfile,BSIZE-4);
|
||||
#ifndef VMS
|
||||
strcat(buf[0],".new");
|
||||
#else
|
||||
strcat(buf[0],"-new");
|
||||
#endif
|
||||
if (BIO_write_filename(out,buf[0]) <= 0)
|
||||
{
|
||||
perror(dbfile);
|
||||
@ -1230,7 +1234,11 @@ EF_ALIGNMENT=0;
|
||||
j=TXT_DB_write(out,db);
|
||||
if (j <= 0) goto err;
|
||||
strncpy(buf[1],dbfile,BSIZE-4);
|
||||
#ifndef VMS
|
||||
strcat(buf[1],".old");
|
||||
#else
|
||||
strcat(buf[1],"-old");
|
||||
#endif
|
||||
if (rename(dbfile,buf[1]) < 0)
|
||||
{
|
||||
BIO_printf(bio_err,"unable to rename %s to %s\n", dbfile, buf[1]);
|
||||
|
@ -73,7 +73,7 @@
|
||||
#undef PROG
|
||||
#define PROG dgst_main
|
||||
|
||||
void do_fp(BIO *out, unsigned char *buf, BIO *bp, int sep, char binout,
|
||||
void do_fp(BIO *out, unsigned char *buf, BIO *bp, int sep, int binout,
|
||||
EVP_PKEY *key, unsigned char *sigin, int siglen);
|
||||
|
||||
int MAIN(int, char **);
|
||||
@ -93,7 +93,7 @@ int MAIN(int argc, char **argv)
|
||||
int debug=0;
|
||||
const char *outfile = NULL, *keyfile = NULL;
|
||||
const char *sigfile = NULL, *randfile = NULL;
|
||||
char out_bin = -1, want_pub = 0, do_verify = 0;
|
||||
int out_bin = -1, want_pub = 0, do_verify = 0;
|
||||
EVP_PKEY *sigkey = NULL;
|
||||
unsigned char *sigbuf = NULL;
|
||||
int siglen = 0;
|
||||
@ -338,7 +338,7 @@ int MAIN(int argc, char **argv)
|
||||
EXIT(err);
|
||||
}
|
||||
|
||||
void do_fp(BIO *out, unsigned char *buf, BIO *bp, int sep, char binout,
|
||||
void do_fp(BIO *out, unsigned char *buf, BIO *bp, int sep, int binout,
|
||||
EVP_PKEY *key, unsigned char *sigin, int siglen)
|
||||
{
|
||||
int len;
|
||||
|
@ -515,6 +515,14 @@ int MAIN(int argc, char **argv)
|
||||
BIO_printf(bio_err,"invalid hex iv value\n");
|
||||
goto end;
|
||||
}
|
||||
if ((hiv == NULL) && (str == NULL))
|
||||
{
|
||||
/* No IV was explicitly set and no IV was generated
|
||||
* during EVP_BytesToKey. Hence the IV is undefined,
|
||||
* making correct decryption impossible. */
|
||||
BIO_printf(bio_err, "iv undefined\n");
|
||||
goto end;
|
||||
}
|
||||
if ((hkey != NULL) && !set_hex(hkey,key,24))
|
||||
{
|
||||
BIO_printf(bio_err,"invalid hex key value\n");
|
||||
|
@ -290,6 +290,7 @@ int MAIN(int argc, char **argv)
|
||||
BIO_printf (bio_err, "-text include or delete text MIME headers\n");
|
||||
BIO_printf (bio_err, "-CApath dir trusted certificates directory\n");
|
||||
BIO_printf (bio_err, "-CAfile file trusted certificates file\n");
|
||||
BIO_printf (bio_err, "-passin arg input file pass phrase source\n");
|
||||
BIO_printf(bio_err, "-rand file%cfile%c...\n", LIST_SEPARATOR_CHAR, LIST_SEPARATOR_CHAR);
|
||||
BIO_printf(bio_err, " load the file (or the files in the directory) into\n");
|
||||
BIO_printf(bio_err, " the random number generator\n");
|
||||
|
@ -82,12 +82,12 @@
|
||||
#include <openssl/rand.h>
|
||||
#include <openssl/err.h>
|
||||
|
||||
#if defined(__FreeBSD__)
|
||||
#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__)
|
||||
# define USE_TOD
|
||||
#elif !defined(MSDOS) && (!defined(VMS) || defined(__DECC))
|
||||
# define TIMES
|
||||
#endif
|
||||
#if !defined(_UNICOS) && !defined(__OpenBSD__) && !defined(sgi) && !defined(__FreeBSD__) && !(defined(__bsdi) || defined(__bsdi__)) && !defined(_AIX) && !defined(MPE)
|
||||
#if !defined(_UNICOS) && !defined(__OpenBSD__) && !defined(sgi) && !defined(__FreeBSD__) && !(defined(__bsdi) || defined(__bsdi__)) && !defined(_AIX) && !defined(MPE) && !defined(__NetBSD__)
|
||||
# define TIMEB
|
||||
#endif
|
||||
|
||||
|
@ -34,8 +34,8 @@ SDIRS= md2 md5 sha mdc2 hmac ripemd \
|
||||
GENERAL=Makefile README crypto-lib.com install.com
|
||||
|
||||
LIB= $(TOP)/libcrypto.a
|
||||
LIBSRC= cryptlib.c mem.c mem_dbg.c cversion.c ex_data.c tmdiff.c cpt_err.c ebcdic.c
|
||||
LIBOBJ= cryptlib.o mem.o mem_dbg.o cversion.o ex_data.o tmdiff.o cpt_err.o ebcdic.o
|
||||
LIBSRC= cryptlib.c mem.c mem_dbg.c cversion.c ex_data.c tmdiff.c cpt_err.c ebcdic.c uid.c
|
||||
LIBOBJ= cryptlib.o mem.o mem_dbg.o cversion.o ex_data.o tmdiff.o cpt_err.o ebcdic.o uid.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
@ -90,7 +90,8 @@ links:
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB)
|
||||
@echo You may get an error following this line. Please ignore.
|
||||
- $(RANLIB) $(LIB)
|
||||
@touch lib
|
||||
|
||||
libs:
|
||||
@ -197,3 +198,6 @@ tmdiff.o: ../include/openssl/lhash.h ../include/openssl/opensslconf.h
|
||||
tmdiff.o: ../include/openssl/opensslv.h ../include/openssl/safestack.h
|
||||
tmdiff.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
|
||||
tmdiff.o: ../include/openssl/tmdiff.h cryptlib.h
|
||||
uid.o: ../include/openssl/crypto.h ../include/openssl/opensslv.h
|
||||
uid.o: ../include/openssl/safestack.h ../include/openssl/stack.h
|
||||
uid.o: ../include/openssl/symhacks.h
|
||||
|
@ -75,7 +75,8 @@ all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB)
|
||||
@echo You may get an error following this line. Please ignore.
|
||||
- $(RANLIB) $(LIB)
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
|
@ -349,6 +349,8 @@ int X509_NAME_print(BIO *bp, X509_NAME *name, int obase)
|
||||
ll=80-2-obase;
|
||||
|
||||
s=X509_NAME_oneline(name,buf,256);
|
||||
if (!*s)
|
||||
return 1;
|
||||
s++; /* skip the first slash */
|
||||
|
||||
l=ll;
|
||||
|
@ -234,7 +234,7 @@ EVP_PKEY *X509_PUBKEY_get(X509_PUBKEY *key)
|
||||
a=key->algor;
|
||||
if (ret->type == EVP_PKEY_DSA)
|
||||
{
|
||||
if (a->parameter->type == V_ASN1_SEQUENCE)
|
||||
if (a->parameter && (a->parameter->type == V_ASN1_SEQUENCE))
|
||||
{
|
||||
ret->pkey.dsa->write_params=0;
|
||||
p=a->parameter->value.sequence->data;
|
||||
|
@ -44,7 +44,8 @@ all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB)
|
||||
@echo You may get an error following this line. Please ignore.
|
||||
- $(RANLIB) $(LIB)
|
||||
@touch lib
|
||||
|
||||
# elf
|
||||
|
@ -27,11 +27,13 @@ LIBSRC= bio_lib.c bio_cb.c bio_err.c \
|
||||
bss_file.c bss_sock.c bss_conn.c \
|
||||
bf_null.c bf_buff.c b_print.c b_dump.c \
|
||||
b_sock.c bss_acpt.c bf_nbio.c bss_log.c bss_bio.c
|
||||
# bf_lbuf.c
|
||||
LIBOBJ= bio_lib.o bio_cb.o bio_err.o \
|
||||
bss_mem.o bss_null.o bss_fd.o \
|
||||
bss_file.o bss_sock.o bss_conn.o \
|
||||
bf_null.o bf_buff.o b_print.o b_dump.o \
|
||||
b_sock.o bss_acpt.o bf_nbio.o bss_log.o bss_bio.o
|
||||
# bf_lbuf.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
@ -47,7 +49,8 @@ all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB)
|
||||
@echo You may get an error following this line. Please ignore.
|
||||
- $(RANLIB) $(LIB)
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
|
@ -96,13 +96,13 @@ b_dump.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
b_dump.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
|
||||
b_dump.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
b_dump.o: ../cryptlib.h
|
||||
b_print.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
b_print.o: ../../include/openssl/crypto.h ../../include/openssl/e_os.h
|
||||
b_print.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
b_print.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
b_print.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
|
||||
b_print.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
b_print.o: ../cryptlib.h
|
||||
b_print.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
b_print.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
b_print.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
|
||||
b_print.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
b_print.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
b_print.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
b_print.o: ../../include/openssl/symhacks.h ../cryptlib.h
|
||||
b_sock.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
b_sock.o: ../../include/openssl/crypto.h ../../include/openssl/e_os.h
|
||||
b_sock.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
|
@ -69,6 +69,7 @@
|
||||
#ifndef NO_SYS_TYPES_H
|
||||
#include <sys/types.h>
|
||||
#endif
|
||||
#include <openssl/bn.h> /* To get BN_LLONG properly defined */
|
||||
#include <openssl/bio.h>
|
||||
|
||||
#ifdef BN_LLONG
|
||||
@ -108,7 +109,11 @@
|
||||
#endif
|
||||
|
||||
#if HAVE_LONG_LONG
|
||||
#define LLONG long long
|
||||
# if defined(WIN32) && !defined(__GNUC__)
|
||||
# define LLONG _int64
|
||||
# else
|
||||
# define LLONG long long
|
||||
# endif
|
||||
#else
|
||||
#define LLONG long
|
||||
#endif
|
||||
@ -151,7 +156,7 @@ static void _dopr(char **sbuffer, char **buffer,
|
||||
|
||||
/* some handy macros */
|
||||
#define char_to_int(p) (p - '0')
|
||||
#define MAX(p,q) ((p >= q) ? p : q)
|
||||
#define OSSL_MAX(p,q) ((p >= q) ? p : q)
|
||||
|
||||
static void
|
||||
_dopr(
|
||||
@ -502,13 +507,13 @@ fmtint(
|
||||
convert[place] = 0;
|
||||
|
||||
zpadlen = max - place;
|
||||
spadlen = min - MAX(max, place) - (signvalue ? 1 : 0);
|
||||
spadlen = min - OSSL_MAX(max, place) - (signvalue ? 1 : 0);
|
||||
if (zpadlen < 0)
|
||||
zpadlen = 0;
|
||||
if (spadlen < 0)
|
||||
spadlen = 0;
|
||||
if (flags & DP_F_ZERO) {
|
||||
zpadlen = MAX(zpadlen, spadlen);
|
||||
zpadlen = OSSL_MAX(zpadlen, spadlen);
|
||||
spadlen = 0;
|
||||
}
|
||||
if (flags & DP_F_MINUS)
|
||||
@ -640,7 +645,7 @@ fmtfp(
|
||||
(caps ? "0123456789ABCDEF"
|
||||
: "0123456789abcdef")[fracpart % 10];
|
||||
fracpart = (fracpart / 10);
|
||||
} while (fracpart && (fplace < 20));
|
||||
} while (fplace < max);
|
||||
if (fplace == 20)
|
||||
fplace--;
|
||||
fconvert[fplace] = 0;
|
||||
|
@ -70,7 +70,7 @@ static long buffer_ctrl(BIO *h, int cmd, long arg1, void *arg2);
|
||||
static int buffer_new(BIO *h);
|
||||
static int buffer_free(BIO *data);
|
||||
static long buffer_callback_ctrl(BIO *h, int cmd, bio_info_cb *fp);
|
||||
#define DEFAULT_BUFFER_SIZE 1024
|
||||
#define DEFAULT_BUFFER_SIZE 4096
|
||||
|
||||
static BIO_METHOD methods_buffer=
|
||||
{
|
||||
|
@ -68,7 +68,8 @@ bnbug: bnbug.c ../../libcrypto.a top
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB)
|
||||
@echo You may get an error following this line. Please ignore.
|
||||
- $(RANLIB) $(LIB)
|
||||
@touch lib
|
||||
|
||||
# elf
|
||||
|
@ -1,5 +1,5 @@
|
||||
.rdata
|
||||
.asciiz "mips3.s, Version 1.0"
|
||||
.asciiz "mips3.s, Version 1.1"
|
||||
.asciiz "MIPS III/IV ISA artwork by Andy Polyakov <appro@fy.chalmers.se>"
|
||||
|
||||
/*
|
||||
@ -849,6 +849,7 @@ LEAF(bn_mul_comba8)
|
||||
sltu AT,c_1,t_1
|
||||
daddu t_2,AT
|
||||
daddu c_2,t_2
|
||||
sltu c_3,c_2,t_2
|
||||
dmultu a_1,b_2 /* mul_add_c(a[1],b[2],c1,c2,c3); */
|
||||
mflo t_1
|
||||
mfhi t_2
|
||||
@ -856,7 +857,8 @@ LEAF(bn_mul_comba8)
|
||||
sltu AT,c_1,t_1
|
||||
daddu t_2,AT
|
||||
daddu c_2,t_2
|
||||
sltu c_3,c_2,t_2
|
||||
sltu AT,c_2,t_2
|
||||
daddu c_3,AT
|
||||
dmultu a_2,b_1 /* mul_add_c(a[2],b[1],c1,c2,c3); */
|
||||
mflo t_1
|
||||
mfhi t_2
|
||||
@ -884,6 +886,7 @@ LEAF(bn_mul_comba8)
|
||||
sltu AT,c_2,t_1
|
||||
daddu t_2,AT
|
||||
daddu c_3,t_2
|
||||
sltu c_1,c_3,t_2
|
||||
dmultu a_3,b_1 /* mul_add_c(a[3],b[1],c2,c3,c1); */
|
||||
mflo t_1
|
||||
mfhi t_2
|
||||
@ -891,7 +894,8 @@ LEAF(bn_mul_comba8)
|
||||
sltu AT,c_2,t_1
|
||||
daddu t_2,AT
|
||||
daddu c_3,t_2
|
||||
sltu c_1,c_3,t_2
|
||||
sltu AT,c_3,t_2
|
||||
daddu c_1,AT
|
||||
dmultu a_2,b_2 /* mul_add_c(a[2],b[2],c2,c3,c1); */
|
||||
mflo t_1
|
||||
mfhi t_2
|
||||
@ -928,6 +932,7 @@ LEAF(bn_mul_comba8)
|
||||
sltu AT,c_3,t_1
|
||||
daddu t_2,AT
|
||||
daddu c_1,t_2
|
||||
sltu c_2,c_1,t_2
|
||||
dmultu a_1,b_4 /* mul_add_c(a[1],b[4],c3,c1,c2); */
|
||||
mflo t_1
|
||||
mfhi t_2
|
||||
@ -935,7 +940,8 @@ LEAF(bn_mul_comba8)
|
||||
sltu AT,c_3,t_1
|
||||
daddu t_2,AT
|
||||
daddu c_1,t_2
|
||||
sltu c_2,c_1,t_2
|
||||
sltu AT,c_1,t_2
|
||||
daddu c_2,AT
|
||||
dmultu a_2,b_3 /* mul_add_c(a[2],b[3],c3,c1,c2); */
|
||||
mflo t_1
|
||||
mfhi t_2
|
||||
@ -981,6 +987,7 @@ LEAF(bn_mul_comba8)
|
||||
sltu AT,c_1,t_1
|
||||
daddu t_2,AT
|
||||
daddu c_2,t_2
|
||||
sltu c_3,c_2,t_2
|
||||
dmultu a_5,b_1 /* mul_add_c(a[5],b[1],c1,c2,c3); */
|
||||
mflo t_1
|
||||
mfhi t_2
|
||||
@ -988,7 +995,8 @@ LEAF(bn_mul_comba8)
|
||||
sltu AT,c_1,t_1
|
||||
daddu t_2,AT
|
||||
daddu c_2,t_2
|
||||
sltu c_3,c_2,t_2
|
||||
sltu AT,c_2,t_2
|
||||
daddu c_3,AT
|
||||
dmultu a_4,b_2 /* mul_add_c(a[4],b[2],c1,c2,c3); */
|
||||
mflo t_1
|
||||
mfhi t_2
|
||||
@ -1043,6 +1051,7 @@ LEAF(bn_mul_comba8)
|
||||
sltu AT,c_2,t_1
|
||||
daddu t_2,AT
|
||||
daddu c_3,t_2
|
||||
sltu c_1,c_3,t_2
|
||||
dmultu a_1,b_6 /* mul_add_c(a[1],b[6],c2,c3,c1); */
|
||||
mflo t_1
|
||||
mfhi t_2
|
||||
@ -1050,7 +1059,8 @@ LEAF(bn_mul_comba8)
|
||||
sltu AT,c_2,t_1
|
||||
daddu t_2,AT
|
||||
daddu c_3,t_2
|
||||
sltu c_1,c_3,t_2
|
||||
sltu AT,c_3,t_2
|
||||
daddu c_1,AT
|
||||
dmultu a_2,b_5 /* mul_add_c(a[2],b[5],c2,c3,c1); */
|
||||
mflo t_1
|
||||
mfhi t_2
|
||||
@ -1114,6 +1124,7 @@ LEAF(bn_mul_comba8)
|
||||
sltu AT,c_3,t_1
|
||||
daddu t_2,AT
|
||||
daddu c_1,t_2
|
||||
sltu c_2,c_1,t_2
|
||||
dmultu a_6,b_2 /* mul_add_c(a[6],b[2],c3,c1,c2); */
|
||||
mflo t_1
|
||||
mfhi t_2
|
||||
@ -1121,7 +1132,8 @@ LEAF(bn_mul_comba8)
|
||||
sltu AT,c_3,t_1
|
||||
daddu t_2,AT
|
||||
daddu c_1,t_2
|
||||
sltu c_2,c_1,t_2
|
||||
sltu AT,c_1,t_2
|
||||
daddu c_2,AT
|
||||
dmultu a_5,b_3 /* mul_add_c(a[5],b[3],c3,c1,c2); */
|
||||
mflo t_1
|
||||
mfhi t_2
|
||||
@ -1176,6 +1188,7 @@ LEAF(bn_mul_comba8)
|
||||
sltu AT,c_1,t_1
|
||||
daddu t_2,AT
|
||||
daddu c_2,t_2
|
||||
sltu c_3,c_2,t_2
|
||||
dmultu a_3,b_6 /* mul_add_c(a[3],b[6],c1,c2,c3); */
|
||||
mflo t_1
|
||||
mfhi t_2
|
||||
@ -1183,7 +1196,8 @@ LEAF(bn_mul_comba8)
|
||||
sltu AT,c_1,t_1
|
||||
daddu t_2,AT
|
||||
daddu c_2,t_2
|
||||
sltu c_3,c_2,t_2
|
||||
sltu AT,c_2,t_2
|
||||
daddu c_3,AT
|
||||
dmultu a_4,b_5 /* mul_add_c(a[4],b[5],c1,c2,c3); */
|
||||
mflo t_1
|
||||
mfhi t_2
|
||||
@ -1229,6 +1243,7 @@ LEAF(bn_mul_comba8)
|
||||
sltu AT,c_2,t_1
|
||||
daddu t_2,AT
|
||||
daddu c_3,t_2
|
||||
sltu c_1,c_3,t_2
|
||||
dmultu a_6,b_4 /* mul_add_c(a[6],b[4],c2,c3,c1); */
|
||||
mflo t_1
|
||||
mfhi t_2
|
||||
@ -1236,7 +1251,8 @@ LEAF(bn_mul_comba8)
|
||||
sltu AT,c_2,t_1
|
||||
daddu t_2,AT
|
||||
daddu c_3,t_2
|
||||
sltu c_1,c_3,t_2
|
||||
sltu AT,c_3,t_2
|
||||
daddu c_1,AT
|
||||
dmultu a_5,b_5 /* mul_add_c(a[5],b[5],c2,c3,c1); */
|
||||
mflo t_1
|
||||
mfhi t_2
|
||||
@ -1273,6 +1289,7 @@ LEAF(bn_mul_comba8)
|
||||
sltu AT,c_3,t_1
|
||||
daddu t_2,AT
|
||||
daddu c_1,t_2
|
||||
sltu c_2,c_1,t_2
|
||||
dmultu a_5,b_6 /* mul_add_c(a[5],b[6],c3,c1,c2); */
|
||||
mflo t_1
|
||||
mfhi t_2
|
||||
@ -1280,7 +1297,8 @@ LEAF(bn_mul_comba8)
|
||||
sltu AT,c_3,t_1
|
||||
daddu t_2,AT
|
||||
daddu c_1,t_2
|
||||
sltu c_2,c_1,t_2
|
||||
sltu AT,c_1,t_2
|
||||
daddu c_2,AT
|
||||
dmultu a_6,b_5 /* mul_add_c(a[6],b[5],c3,c1,c2); */
|
||||
mflo t_1
|
||||
mfhi t_2
|
||||
@ -1308,6 +1326,7 @@ LEAF(bn_mul_comba8)
|
||||
sltu AT,c_1,t_1
|
||||
daddu t_2,AT
|
||||
daddu c_2,t_2
|
||||
sltu c_3,c_2,t_2
|
||||
dmultu a_6,b_6 /* mul_add_c(a[6],b[6],c1,c2,c3); */
|
||||
mflo t_1
|
||||
mfhi t_2
|
||||
@ -1315,7 +1334,8 @@ LEAF(bn_mul_comba8)
|
||||
sltu AT,c_1,t_1
|
||||
daddu t_2,AT
|
||||
daddu c_2,t_2
|
||||
sltu c_3,c_2,t_2
|
||||
sltu AT,c_2,t_2
|
||||
daddu c_3,AT
|
||||
dmultu a_5,b_7 /* mul_add_c(a[5],b[7],c1,c2,c3); */
|
||||
mflo t_1
|
||||
mfhi t_2
|
||||
@ -1334,6 +1354,7 @@ LEAF(bn_mul_comba8)
|
||||
sltu AT,c_2,t_1
|
||||
daddu t_2,AT
|
||||
daddu c_3,t_2
|
||||
sltu c_1,c_3,t_2
|
||||
dmultu a_7,b_6 /* mul_add_c(a[7],b[6],c2,c3,c1); */
|
||||
mflo t_1
|
||||
mfhi t_2
|
||||
@ -1341,7 +1362,8 @@ LEAF(bn_mul_comba8)
|
||||
sltu AT,c_2,t_1
|
||||
daddu t_2,AT
|
||||
daddu c_3,t_2
|
||||
sltu c_1,c_3,t_2
|
||||
sltu AT,c_3,t_2
|
||||
daddu c_1,AT
|
||||
sd c_2,104(a0) /* r[13]=c2; */
|
||||
|
||||
dmultu a_7,b_7 /* mul_add_c(a[7],b[7],c3,c1,c2); */
|
||||
@ -1430,6 +1452,7 @@ LEAF(bn_mul_comba4)
|
||||
sltu AT,c_1,t_1
|
||||
daddu t_2,AT
|
||||
daddu c_2,t_2
|
||||
sltu c_3,c_2,t_2
|
||||
dmultu a_1,b_2 /* mul_add_c(a[1],b[2],c1,c2,c3); */
|
||||
mflo t_1
|
||||
mfhi t_2
|
||||
@ -1437,7 +1460,8 @@ LEAF(bn_mul_comba4)
|
||||
sltu AT,c_1,t_1
|
||||
daddu t_2,AT
|
||||
daddu c_2,t_2
|
||||
sltu c_3,c_2,t_2
|
||||
sltu AT,c_2,t_2
|
||||
daddu c_3,AT
|
||||
dmultu a_2,b_1 /* mul_add_c(a[2],b[1],c1,c2,c3); */
|
||||
mflo t_1
|
||||
mfhi t_2
|
||||
@ -1465,6 +1489,7 @@ LEAF(bn_mul_comba4)
|
||||
sltu AT,c_2,t_1
|
||||
daddu t_2,AT
|
||||
daddu c_3,t_2
|
||||
sltu c_1,c_3,t_2
|
||||
dmultu a_2,b_2 /* mul_add_c(a[2],b[2],c2,c3,c1); */
|
||||
mflo t_1
|
||||
mfhi t_2
|
||||
@ -1472,7 +1497,8 @@ LEAF(bn_mul_comba4)
|
||||
sltu AT,c_2,t_1
|
||||
daddu t_2,AT
|
||||
daddu c_3,t_2
|
||||
sltu c_1,c_3,t_2
|
||||
sltu AT,c_3,t_2
|
||||
daddu c_1,AT
|
||||
dmultu a_1,b_3 /* mul_add_c(a[1],b[3],c2,c3,c1); */
|
||||
mflo t_1
|
||||
mfhi t_2
|
||||
@ -1491,6 +1517,7 @@ LEAF(bn_mul_comba4)
|
||||
sltu AT,c_3,t_1
|
||||
daddu t_2,AT
|
||||
daddu c_1,t_2
|
||||
sltu c_2,c_1,t_2
|
||||
dmultu a_3,b_2 /* mul_add_c(a[3],b[2],c3,c1,c2); */
|
||||
mflo t_1
|
||||
mfhi t_2
|
||||
@ -1498,7 +1525,8 @@ LEAF(bn_mul_comba4)
|
||||
sltu AT,c_3,t_1
|
||||
daddu t_2,AT
|
||||
daddu c_1,t_2
|
||||
sltu c_2,c_1,t_2
|
||||
sltu AT,c_1,t_2
|
||||
daddu c_2,AT
|
||||
sd c_3,40(a0)
|
||||
|
||||
dmultu a_3,b_3 /* mul_add_c(a[3],b[3],c1,c2,c3); */
|
||||
@ -1543,28 +1571,30 @@ LEAF(bn_sqr_comba8)
|
||||
dmultu a_0,a_1 /* mul_add_c2(a[0],b[1],c2,c3,c1); */
|
||||
mflo t_1
|
||||
mfhi t_2
|
||||
slt c_1,t_2,zero
|
||||
dsll t_2,1
|
||||
slt a2,t_1,zero
|
||||
daddu t_2,a2
|
||||
dsll t_1,1
|
||||
daddu c_2,t_1
|
||||
sltu AT,c_2,t_1
|
||||
daddu c_3,t_2,AT
|
||||
daddu c_2,t_1
|
||||
sltu AT,c_2,t_1
|
||||
daddu t_2,AT
|
||||
daddu c_3,t_2
|
||||
sltu c_1,c_3,t_2
|
||||
sd c_2,8(a0)
|
||||
|
||||
dmultu a_2,a_0 /* mul_add_c2(a[2],b[0],c3,c1,c2); */
|
||||
mflo t_1
|
||||
mfhi t_2
|
||||
daddu c_3,t_1
|
||||
sltu AT,c_3,t_1
|
||||
daddu a2,t_2,AT
|
||||
daddu c_1,a2
|
||||
slt c_2,t_2,zero
|
||||
dsll t_2,1
|
||||
slt a2,t_1,zero
|
||||
daddu t_2,a2
|
||||
dsll t_1,1
|
||||
daddu c_3,t_1
|
||||
sltu AT,c_3,t_1
|
||||
daddu t_2,AT
|
||||
daddu c_1,t_2
|
||||
sltu c_2,c_1,t_2
|
||||
sltu AT,c_1,t_2
|
||||
daddu c_2,AT
|
||||
dmultu a_1,a_1 /* mul_add_c(a[1],b[1],c3,c1,c2); */
|
||||
mflo t_1
|
||||
mfhi t_2
|
||||
@ -1579,24 +1609,26 @@ LEAF(bn_sqr_comba8)
|
||||
dmultu a_0,a_3 /* mul_add_c2(a[0],b[3],c1,c2,c3); */
|
||||
mflo t_1
|
||||
mfhi t_2
|
||||
daddu c_1,t_1
|
||||
sltu AT,c_1,t_1
|
||||
daddu a2,t_2,AT
|
||||
daddu c_2,a2
|
||||
slt c_3,t_2,zero
|
||||
dsll t_2,1
|
||||
slt a2,t_1,zero
|
||||
daddu t_2,a2
|
||||
dsll t_1,1
|
||||
daddu c_1,t_1
|
||||
sltu AT,c_1,t_1
|
||||
daddu t_2,AT
|
||||
daddu c_2,t_2
|
||||
sltu c_3,c_2,t_2
|
||||
sltu AT,c_2,t_2
|
||||
daddu c_3,AT
|
||||
dmultu a_1,a_2 /* mul_add_c2(a[1],b[2],c1,c2,c3); */
|
||||
mflo t_1
|
||||
mfhi t_2
|
||||
daddu c_1,t_1
|
||||
sltu AT,c_1,t_1
|
||||
daddu a2,t_2,AT
|
||||
daddu c_2,a2
|
||||
sltu AT,c_2,a2
|
||||
slt AT,t_2,zero
|
||||
daddu c_3,AT
|
||||
dsll t_2,1
|
||||
slt a2,t_1,zero
|
||||
daddu t_2,a2
|
||||
dsll t_1,1
|
||||
daddu c_1,t_1
|
||||
sltu AT,c_1,t_1
|
||||
daddu t_2,AT
|
||||
@ -1608,24 +1640,26 @@ LEAF(bn_sqr_comba8)
|
||||
dmultu a_4,a_0 /* mul_add_c2(a[4],b[0],c2,c3,c1); */
|
||||
mflo t_1
|
||||
mfhi t_2
|
||||
daddu c_2,t_1
|
||||
sltu AT,c_2,t_1
|
||||
daddu a2,t_2,AT
|
||||
daddu c_3,a2
|
||||
slt c_1,t_2,zero
|
||||
dsll t_2,1
|
||||
slt a2,t_1,zero
|
||||
daddu t_2,a2
|
||||
dsll t_1,1
|
||||
daddu c_2,t_1
|
||||
sltu AT,c_2,t_1
|
||||
daddu t_2,AT
|
||||
daddu c_3,t_2
|
||||
sltu c_1,c_3,t_2
|
||||
sltu AT,c_3,t_2
|
||||
daddu c_1,AT
|
||||
dmultu a_3,a_1 /* mul_add_c2(a[3],b[1],c2,c3,c1); */
|
||||
mflo t_1
|
||||
mfhi t_2
|
||||
daddu c_2,t_1
|
||||
sltu AT,c_2,t_1
|
||||
daddu a2,t_2,AT
|
||||
daddu c_3,a2
|
||||
sltu AT,c_3,a2
|
||||
slt AT,t_2,zero
|
||||
daddu c_1,AT
|
||||
dsll t_2,1
|
||||
slt a2,t_1,zero
|
||||
daddu t_2,a2
|
||||
dsll t_1,1
|
||||
daddu c_2,t_1
|
||||
sltu AT,c_2,t_1
|
||||
daddu t_2,AT
|
||||
@ -1646,24 +1680,26 @@ LEAF(bn_sqr_comba8)
|
||||
dmultu a_0,a_5 /* mul_add_c2(a[0],b[5],c3,c1,c2); */
|
||||
mflo t_1
|
||||
mfhi t_2
|
||||
daddu c_3,t_1
|
||||
sltu AT,c_3,t_1
|
||||
daddu a2,t_2,AT
|
||||
daddu c_1,a2
|
||||
slt c_2,t_2,zero
|
||||
dsll t_2,1
|
||||
slt a2,t_1,zero
|
||||
daddu t_2,a2
|
||||
dsll t_1,1
|
||||
daddu c_3,t_1
|
||||
sltu AT,c_3,t_1
|
||||
daddu t_2,AT
|
||||
daddu c_1,t_2
|
||||
sltu c_2,c_1,t_2
|
||||
sltu AT,c_1,t_2
|
||||
daddu c_2,AT
|
||||
dmultu a_1,a_4 /* mul_add_c2(a[1],b[4],c3,c1,c2); */
|
||||
mflo t_1
|
||||
mfhi t_2
|
||||
daddu c_3,t_1
|
||||
sltu AT,c_3,t_1
|
||||
daddu a2,t_2,AT
|
||||
daddu c_1,a2
|
||||
sltu AT,c_1,a2
|
||||
slt AT,t_2,zero
|
||||
daddu c_2,AT
|
||||
dsll t_2,1
|
||||
slt a2,t_1,zero
|
||||
daddu t_2,a2
|
||||
dsll t_1,1
|
||||
daddu c_3,t_1
|
||||
sltu AT,c_3,t_1
|
||||
daddu t_2,AT
|
||||
@ -1673,12 +1709,12 @@ LEAF(bn_sqr_comba8)
|
||||
dmultu a_2,a_3 /* mul_add_c2(a[2],b[3],c3,c1,c2); */
|
||||
mflo t_1
|
||||
mfhi t_2
|
||||
daddu c_3,t_1
|
||||
sltu AT,c_3,t_1
|
||||
daddu a2,t_2,AT
|
||||
daddu c_1,a2
|
||||
sltu AT,c_1,a2
|
||||
slt AT,t_2,zero
|
||||
daddu c_2,AT
|
||||
dsll t_2,1
|
||||
slt a2,t_1,zero
|
||||
daddu t_2,a2
|
||||
dsll t_1,1
|
||||
daddu c_3,t_1
|
||||
sltu AT,c_3,t_1
|
||||
daddu t_2,AT
|
||||
@ -1690,24 +1726,26 @@ LEAF(bn_sqr_comba8)
|
||||
dmultu a_6,a_0 /* mul_add_c2(a[6],b[0],c1,c2,c3); */
|
||||
mflo t_1
|
||||
mfhi t_2
|
||||
daddu c_1,t_1
|
||||
sltu AT,c_1,t_1
|
||||
daddu a2,t_2,AT
|
||||
daddu c_2,a2
|
||||
slt c_3,t_2,zero
|
||||
dsll t_2,1
|
||||
slt a2,t_1,zero
|
||||
daddu t_2,a2
|
||||
dsll t_1,1
|
||||
daddu c_1,t_1
|
||||
sltu AT,c_1,t_1
|
||||
daddu t_2,AT
|
||||
daddu c_2,t_2
|
||||
sltu c_3,c_2,t_2
|
||||
sltu AT,c_2,t_2
|
||||
daddu c_3,AT
|
||||
dmultu a_5,a_1 /* mul_add_c2(a[5],b[1],c1,c2,c3); */
|
||||
mflo t_1
|
||||
mfhi t_2
|
||||
daddu c_1,t_1
|
||||
sltu AT,c_1,t_1
|
||||
daddu a2,t_2,AT
|
||||
daddu c_2,a2
|
||||
sltu AT,c_2,a2
|
||||
slt AT,t_2,zero
|
||||
daddu c_3,AT
|
||||
dsll t_2,1
|
||||
slt a2,t_1,zero
|
||||
daddu t_2,a2
|
||||
dsll t_1,1
|
||||
daddu c_1,t_1
|
||||
sltu AT,c_1,t_1
|
||||
daddu t_2,AT
|
||||
@ -1717,12 +1755,12 @@ LEAF(bn_sqr_comba8)
|
||||
dmultu a_4,a_2 /* mul_add_c2(a[4],b[2],c1,c2,c3); */
|
||||
mflo t_1
|
||||
mfhi t_2
|
||||
daddu c_1,t_1
|
||||
sltu AT,c_1,t_1
|
||||
daddu a2,t_2,AT
|
||||
daddu c_2,a2
|
||||
sltu AT,c_2,a2
|
||||
slt AT,t_2,zero
|
||||
daddu c_3,AT
|
||||
dsll t_2,1
|
||||
slt a2,t_1,zero
|
||||
daddu t_2,a2
|
||||
dsll t_1,1
|
||||
daddu c_1,t_1
|
||||
sltu AT,c_1,t_1
|
||||
daddu t_2,AT
|
||||
@ -1743,24 +1781,26 @@ LEAF(bn_sqr_comba8)
|
||||
dmultu a_0,a_7 /* mul_add_c2(a[0],b[7],c2,c3,c1); */
|
||||
mflo t_1
|
||||
mfhi t_2
|
||||
daddu c_2,t_1
|
||||
sltu AT,c_2,t_1
|
||||
daddu a2,t_2,AT
|
||||
daddu c_3,a2
|
||||
slt c_1,t_2,zero
|
||||
dsll t_2,1
|
||||
slt a2,t_1,zero
|
||||
daddu t_2,a2
|
||||
dsll t_1,1
|
||||
daddu c_2,t_1
|
||||
sltu AT,c_2,t_1
|
||||
daddu t_2,AT
|
||||
daddu c_3,t_2
|
||||
sltu c_1,c_3,t_2
|
||||
sltu AT,c_3,t_2
|
||||
daddu c_1,AT
|
||||
dmultu a_1,a_6 /* mul_add_c2(a[1],b[6],c2,c3,c1); */
|
||||
mflo t_1
|
||||
mfhi t_2
|
||||
daddu c_2,t_1
|
||||
sltu AT,c_2,t_1
|
||||
daddu a2,t_2,AT
|
||||
daddu c_3,a2
|
||||
sltu AT,c_3,a2
|
||||
slt AT,t_2,zero
|
||||
daddu c_1,AT
|
||||
dsll t_2,1
|
||||
slt a2,t_1,zero
|
||||
daddu t_2,a2
|
||||
dsll t_1,1
|
||||
daddu c_2,t_1
|
||||
sltu AT,c_2,t_1
|
||||
daddu t_2,AT
|
||||
@ -1770,12 +1810,12 @@ LEAF(bn_sqr_comba8)
|
||||
dmultu a_2,a_5 /* mul_add_c2(a[2],b[5],c2,c3,c1); */
|
||||
mflo t_1
|
||||
mfhi t_2
|
||||
daddu c_2,t_1
|
||||
sltu AT,c_2,t_1
|
||||
daddu a2,t_2,AT
|
||||
daddu c_3,a2
|
||||
sltu AT,c_3,a2
|
||||
slt AT,t_2,zero
|
||||
daddu c_1,AT
|
||||
dsll t_2,1
|
||||
slt a2,t_1,zero
|
||||
daddu t_2,a2
|
||||
dsll t_1,1
|
||||
daddu c_2,t_1
|
||||
sltu AT,c_2,t_1
|
||||
daddu t_2,AT
|
||||
@ -1785,12 +1825,12 @@ LEAF(bn_sqr_comba8)
|
||||
dmultu a_3,a_4 /* mul_add_c2(a[3],b[4],c2,c3,c1); */
|
||||
mflo t_1
|
||||
mfhi t_2
|
||||
daddu c_2,t_1
|
||||
sltu AT,c_2,t_1
|
||||
daddu a2,t_2,AT
|
||||
daddu c_3,a2
|
||||
sltu AT,c_3,a2
|
||||
slt AT,t_2,zero
|
||||
daddu c_1,AT
|
||||
dsll t_2,1
|
||||
slt a2,t_1,zero
|
||||
daddu t_2,a2
|
||||
dsll t_1,1
|
||||
daddu c_2,t_1
|
||||
sltu AT,c_2,t_1
|
||||
daddu t_2,AT
|
||||
@ -1802,24 +1842,26 @@ LEAF(bn_sqr_comba8)
|
||||
dmultu a_7,a_1 /* mul_add_c2(a[7],b[1],c3,c1,c2); */
|
||||
mflo t_1
|
||||
mfhi t_2
|
||||
daddu c_3,t_1
|
||||
sltu AT,c_3,t_1
|
||||
daddu a2,t_2,AT
|
||||
daddu c_1,a2
|
||||
slt c_2,t_2,zero
|
||||
dsll t_2,1
|
||||
slt a2,t_1,zero
|
||||
daddu t_2,a2
|
||||
dsll t_1,1
|
||||
daddu c_3,t_1
|
||||
sltu AT,c_3,t_1
|
||||
daddu t_2,AT
|
||||
daddu c_1,t_2
|
||||
sltu c_2,c_1,t_2
|
||||
sltu AT,c_1,t_2
|
||||
daddu c_2,AT
|
||||
dmultu a_6,a_2 /* mul_add_c2(a[6],b[2],c3,c1,c2); */
|
||||
mflo t_1
|
||||
mfhi t_2
|
||||
daddu c_3,t_1
|
||||
sltu AT,c_3,t_1
|
||||
daddu a2,t_2,AT
|
||||
daddu c_1,a2
|
||||
sltu AT,c_1,a2
|
||||
slt AT,t_2,zero
|
||||
daddu c_2,AT
|
||||
dsll t_2,1
|
||||
slt a2,t_1,zero
|
||||
daddu t_2,a2
|
||||
dsll t_1,1
|
||||
daddu c_3,t_1
|
||||
sltu AT,c_3,t_1
|
||||
daddu t_2,AT
|
||||
@ -1829,12 +1871,12 @@ LEAF(bn_sqr_comba8)
|
||||
dmultu a_5,a_3 /* mul_add_c2(a[5],b[3],c3,c1,c2); */
|
||||
mflo t_1
|
||||
mfhi t_2
|
||||
daddu c_3,t_1
|
||||
sltu AT,c_3,t_1
|
||||
daddu a2,t_2,AT
|
||||
daddu c_1,a2
|
||||
sltu AT,c_1,a2
|
||||
slt AT,t_2,zero
|
||||
daddu c_2,AT
|
||||
dsll t_2,1
|
||||
slt a2,t_1,zero
|
||||
daddu t_2,a2
|
||||
dsll t_1,1
|
||||
daddu c_3,t_1
|
||||
sltu AT,c_3,t_1
|
||||
daddu t_2,AT
|
||||
@ -1855,24 +1897,26 @@ LEAF(bn_sqr_comba8)
|
||||
dmultu a_2,a_7 /* mul_add_c2(a[2],b[7],c1,c2,c3); */
|
||||
mflo t_1
|
||||
mfhi t_2
|
||||
daddu c_1,t_1
|
||||
sltu AT,c_1,t_1
|
||||
daddu a2,t_2,AT
|
||||
daddu c_2,a2
|
||||
slt c_3,t_2,zero
|
||||
dsll t_2,1
|
||||
slt a2,t_1,zero
|
||||
daddu t_2,a2
|
||||
dsll t_1,1
|
||||
daddu c_1,t_1
|
||||
sltu AT,c_1,t_1
|
||||
daddu t_2,AT
|
||||
daddu c_2,t_2
|
||||
sltu c_3,c_2,t_2
|
||||
sltu AT,c_2,t_2
|
||||
daddu c_3,AT
|
||||
dmultu a_3,a_6 /* mul_add_c2(a[3],b[6],c1,c2,c3); */
|
||||
mflo t_1
|
||||
mfhi t_2
|
||||
daddu c_1,t_1
|
||||
sltu AT,c_1,t_1
|
||||
daddu a2,t_2,AT
|
||||
daddu c_2,a2
|
||||
sltu AT,c_2,a2
|
||||
slt AT,t_2,zero
|
||||
daddu c_3,AT
|
||||
dsll t_2,1
|
||||
slt a2,t_1,zero
|
||||
daddu t_2,a2
|
||||
dsll t_1,1
|
||||
daddu c_1,t_1
|
||||
sltu AT,c_1,t_1
|
||||
daddu t_2,AT
|
||||
@ -1882,12 +1926,12 @@ LEAF(bn_sqr_comba8)
|
||||
dmultu a_4,a_5 /* mul_add_c2(a[4],b[5],c1,c2,c3); */
|
||||
mflo t_1
|
||||
mfhi t_2
|
||||
daddu c_1,t_1
|
||||
sltu AT,c_1,t_1
|
||||
daddu a2,t_2,AT
|
||||
daddu c_2,a2
|
||||
sltu AT,c_2,a2
|
||||
slt AT,t_2,zero
|
||||
daddu c_3,AT
|
||||
dsll t_2,1
|
||||
slt a2,t_1,zero
|
||||
daddu t_2,a2
|
||||
dsll t_1,1
|
||||
daddu c_1,t_1
|
||||
sltu AT,c_1,t_1
|
||||
daddu t_2,AT
|
||||
@ -1899,24 +1943,26 @@ LEAF(bn_sqr_comba8)
|
||||
dmultu a_7,a_3 /* mul_add_c2(a[7],b[3],c2,c3,c1); */
|
||||
mflo t_1
|
||||
mfhi t_2
|
||||
daddu c_2,t_1
|
||||
sltu AT,c_2,t_1
|
||||
daddu a2,t_2,AT
|
||||
daddu c_3,a2
|
||||
slt c_1,t_2,zero
|
||||
dsll t_2,1
|
||||
slt a2,t_1,zero
|
||||
daddu t_2,a2
|
||||
dsll t_1,1
|
||||
daddu c_2,t_1
|
||||
sltu AT,c_2,t_1
|
||||
daddu t_2,AT
|
||||
daddu c_3,t_2
|
||||
sltu c_1,c_3,t_2
|
||||
sltu AT,c_3,t_2
|
||||
daddu c_1,AT
|
||||
dmultu a_6,a_4 /* mul_add_c2(a[6],b[4],c2,c3,c1); */
|
||||
mflo t_1
|
||||
mfhi t_2
|
||||
daddu c_2,t_1
|
||||
sltu AT,c_2,t_1
|
||||
daddu a2,t_2,AT
|
||||
daddu c_3,a2
|
||||
sltu AT,c_3,a2
|
||||
slt AT,t_2,zero
|
||||
daddu c_1,AT
|
||||
dsll t_2,1
|
||||
slt a2,t_1,zero
|
||||
daddu t_2,a2
|
||||
dsll t_1,1
|
||||
daddu c_2,t_1
|
||||
sltu AT,c_2,t_1
|
||||
daddu t_2,AT
|
||||
@ -1937,24 +1983,26 @@ LEAF(bn_sqr_comba8)
|
||||
dmultu a_4,a_7 /* mul_add_c2(a[4],b[7],c3,c1,c2); */
|
||||
mflo t_1
|
||||
mfhi t_2
|
||||
daddu c_3,t_1
|
||||
sltu AT,c_3,t_1
|
||||
daddu a2,t_2,AT
|
||||
daddu c_1,a2
|
||||
slt c_2,t_2,zero
|
||||
dsll t_2,1
|
||||
slt a2,t_1,zero
|
||||
daddu t_2,a2
|
||||
dsll t_1,1
|
||||
daddu c_3,t_1
|
||||
sltu AT,c_3,t_1
|
||||
daddu t_2,AT
|
||||
daddu c_1,t_2
|
||||
sltu c_2,c_1,t_2
|
||||
sltu AT,c_1,t_2
|
||||
daddu c_2,AT
|
||||
dmultu a_5,a_6 /* mul_add_c2(a[5],b[6],c3,c1,c2); */
|
||||
mflo t_1
|
||||
mfhi t_2
|
||||
daddu c_3,t_1
|
||||
sltu AT,c_3,t_1
|
||||
daddu a2,t_2,AT
|
||||
daddu c_1,a2
|
||||
sltu AT,c_1,a2
|
||||
slt AT,t_2,zero
|
||||
daddu c_2,AT
|
||||
dsll t_2,1
|
||||
slt a2,t_1,zero
|
||||
daddu t_2,a2
|
||||
dsll t_1,1
|
||||
daddu c_3,t_1
|
||||
sltu AT,c_3,t_1
|
||||
daddu t_2,AT
|
||||
@ -1966,15 +2014,17 @@ LEAF(bn_sqr_comba8)
|
||||
dmultu a_7,a_5 /* mul_add_c2(a[7],b[5],c1,c2,c3); */
|
||||
mflo t_1
|
||||
mfhi t_2
|
||||
daddu c_1,t_1
|
||||
sltu AT,c_1,t_1
|
||||
daddu a2,t_2,AT
|
||||
daddu c_2,a2
|
||||
slt c_3,t_2,zero
|
||||
dsll t_2,1
|
||||
slt a2,t_1,zero
|
||||
daddu t_2,a2
|
||||
dsll t_1,1
|
||||
daddu c_1,t_1
|
||||
sltu AT,c_1,t_1
|
||||
daddu t_2,AT
|
||||
daddu c_2,t_2
|
||||
sltu c_3,c_2,t_2
|
||||
sltu AT,c_2,t_2
|
||||
daddu c_3,AT
|
||||
dmultu a_6,a_6 /* mul_add_c(a[6],b[6],c1,c2,c3); */
|
||||
mflo t_1
|
||||
mfhi t_2
|
||||
@ -1989,15 +2039,17 @@ LEAF(bn_sqr_comba8)
|
||||
dmultu a_6,a_7 /* mul_add_c2(a[6],b[7],c2,c3,c1); */
|
||||
mflo t_1
|
||||
mfhi t_2
|
||||
daddu c_2,t_1
|
||||
sltu AT,c_2,t_1
|
||||
daddu a2,t_2,AT
|
||||
daddu c_3,a2
|
||||
slt c_1,t_2,zero
|
||||
dsll t_2,1
|
||||
slt a2,t_1,zero
|
||||
daddu t_2,a2
|
||||
dsll t_1,1
|
||||
daddu c_2,t_1
|
||||
sltu AT,c_2,t_1
|
||||
daddu t_2,AT
|
||||
daddu c_3,t_2
|
||||
sltu c_1,c_3,t_2
|
||||
sltu AT,c_3,t_2
|
||||
daddu c_1,AT
|
||||
sd c_2,104(a0)
|
||||
|
||||
dmultu a_7,a_7 /* mul_add_c(a[7],b[7],c3,c1,c2); */
|
||||
@ -2028,28 +2080,30 @@ LEAF(bn_sqr_comba4)
|
||||
dmultu a_0,a_1 /* mul_add_c2(a[0],b[1],c2,c3,c1); */
|
||||
mflo t_1
|
||||
mfhi t_2
|
||||
slt c_1,t_2,zero
|
||||
dsll t_2,1
|
||||
slt a2,t_1,zero
|
||||
daddu t_2,a2
|
||||
dsll t_1,1
|
||||
daddu c_2,t_1
|
||||
sltu AT,c_2,t_1
|
||||
daddu c_3,t_2,AT
|
||||
daddu c_2,t_1
|
||||
sltu AT,c_2,t_1
|
||||
daddu t_2,AT
|
||||
daddu c_3,t_2
|
||||
sltu c_1,c_3,t_2
|
||||
sd c_2,8(a0)
|
||||
|
||||
dmultu a_2,a_0 /* mul_add_c2(a[2],b[0],c3,c1,c2); */
|
||||
mflo t_1
|
||||
mfhi t_2
|
||||
daddu c_3,t_1
|
||||
sltu AT,c_3,t_1
|
||||
daddu a2,t_2,AT
|
||||
daddu c_1,a2
|
||||
slt c_2,t_2,zero
|
||||
dsll t_2,1
|
||||
slt a2,t_1,zero
|
||||
daddu t_2,a2
|
||||
dsll t_1,1
|
||||
daddu c_3,t_1
|
||||
sltu AT,c_3,t_1
|
||||
daddu t_2,AT
|
||||
daddu c_1,t_2
|
||||
sltu c_2,c_1,t_2
|
||||
sltu AT,c_1,t_2
|
||||
daddu c_2,AT
|
||||
dmultu a_1,a_1 /* mul_add_c(a[1],b[1],c3,c1,c2); */
|
||||
mflo t_1
|
||||
mfhi t_2
|
||||
@ -2064,24 +2118,26 @@ LEAF(bn_sqr_comba4)
|
||||
dmultu a_0,a_3 /* mul_add_c2(a[0],b[3],c1,c2,c3); */
|
||||
mflo t_1
|
||||
mfhi t_2
|
||||
daddu c_1,t_1
|
||||
sltu AT,c_1,t_1
|
||||
daddu a2,t_2,AT
|
||||
daddu c_2,a2
|
||||
slt c_3,t_2,zero
|
||||
dsll t_2,1
|
||||
slt a2,t_1,zero
|
||||
daddu t_2,a2
|
||||
dsll t_1,1
|
||||
daddu c_1,t_1
|
||||
sltu AT,c_1,t_1
|
||||
daddu t_2,AT
|
||||
daddu c_2,t_2
|
||||
sltu c_3,c_2,t_2
|
||||
sltu AT,c_2,t_2
|
||||
daddu c_3,AT
|
||||
dmultu a_1,a_2 /* mul_add_c(a2[1],b[2],c1,c2,c3); */
|
||||
mflo t_1
|
||||
mfhi t_2
|
||||
daddu c_1,t_1
|
||||
sltu AT,c_1,t_1
|
||||
daddu a2,t_2,AT
|
||||
daddu c_2,a2
|
||||
sltu AT,c_2,a2
|
||||
slt AT,t_2,zero
|
||||
daddu c_3,AT
|
||||
dsll t_2,1
|
||||
slt a2,t_1,zero
|
||||
daddu t_2,a2
|
||||
dsll t_1,1
|
||||
daddu c_1,t_1
|
||||
sltu AT,c_1,t_1
|
||||
daddu t_2,AT
|
||||
@ -2093,15 +2149,17 @@ LEAF(bn_sqr_comba4)
|
||||
dmultu a_3,a_1 /* mul_add_c2(a[3],b[1],c2,c3,c1); */
|
||||
mflo t_1
|
||||
mfhi t_2
|
||||
daddu c_2,t_1
|
||||
sltu AT,c_2,t_1
|
||||
daddu a2,t_2,AT
|
||||
daddu c_3,a2
|
||||
slt c_1,t_2,zero
|
||||
dsll t_2,1
|
||||
slt a2,t_1,zero
|
||||
daddu t_2,a2
|
||||
dsll t_1,1
|
||||
daddu c_2,t_1
|
||||
sltu AT,c_2,t_1
|
||||
daddu t_2,AT
|
||||
daddu c_3,t_2
|
||||
sltu c_1,c_3,t_2
|
||||
sltu AT,c_3,t_2
|
||||
daddu c_1,AT
|
||||
dmultu a_2,a_2 /* mul_add_c(a[2],b[2],c2,c3,c1); */
|
||||
mflo t_1
|
||||
mfhi t_2
|
||||
@ -2116,15 +2174,17 @@ LEAF(bn_sqr_comba4)
|
||||
dmultu a_2,a_3 /* mul_add_c2(a[2],b[3],c3,c1,c2); */
|
||||
mflo t_1
|
||||
mfhi t_2
|
||||
daddu c_3,t_1
|
||||
sltu AT,c_3,t_1
|
||||
daddu a2,t_2,AT
|
||||
daddu c_1,a2
|
||||
slt c_2,t_2,zero
|
||||
dsll t_2,1
|
||||
slt a2,t_1,zero
|
||||
daddu t_2,a2
|
||||
dsll t_1,1
|
||||
daddu c_3,t_1
|
||||
sltu AT,c_3,t_1
|
||||
daddu t_2,AT
|
||||
daddu c_1,t_2
|
||||
sltu c_2,c_1,t_2
|
||||
sltu AT,c_1,t_2
|
||||
daddu c_2,AT
|
||||
sd c_3,40(a0)
|
||||
|
||||
dmultu a_3,a_3 /* mul_add_c(a[3],b[3],c1,c2,c3); */
|
||||
|
@ -39,7 +39,8 @@ all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB)
|
||||
@echo You may get an error following this line. Please ignore.
|
||||
- $(RANLIB) $(LIB)
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
|
@ -47,7 +47,8 @@ all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB)
|
||||
@echo You may get an error following this line. Please ignore.
|
||||
- $(RANLIB) $(LIB)
|
||||
@touch lib
|
||||
|
||||
# elf
|
||||
|
@ -42,7 +42,8 @@ all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB)
|
||||
@echo You may get an error following this line. Please ignore.
|
||||
- $(RANLIB) $(LIB)
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
@ -83,17 +84,19 @@ clean:
|
||||
|
||||
c_rle.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
c_rle.o: ../../include/openssl/bn.h ../../include/openssl/comp.h
|
||||
c_rle.o: ../../include/openssl/crypto.h ../../include/openssl/objects.h
|
||||
c_rle.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
c_rle.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
c_rle.o: ../../include/openssl/crypto.h ../../include/openssl/obj_mac.h
|
||||
c_rle.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
c_rle.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
|
||||
c_rle.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
c_zlib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
c_zlib.o: ../../include/openssl/bn.h ../../include/openssl/comp.h
|
||||
c_zlib.o: ../../include/openssl/crypto.h ../../include/openssl/objects.h
|
||||
c_zlib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
c_zlib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
c_zlib.o: ../../include/openssl/crypto.h ../../include/openssl/obj_mac.h
|
||||
c_zlib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
c_zlib.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
|
||||
c_zlib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
comp_lib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
comp_lib.o: ../../include/openssl/bn.h ../../include/openssl/comp.h
|
||||
comp_lib.o: ../../include/openssl/crypto.h ../../include/openssl/objects.h
|
||||
comp_lib.o: ../../include/openssl/opensslconf.h
|
||||
comp_lib.o: ../../include/openssl/crypto.h ../../include/openssl/obj_mac.h
|
||||
comp_lib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
comp_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
|
||||
comp_lib.o: ../../include/openssl/stack.h
|
||||
comp_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
|
@ -22,14 +22,14 @@ TEST=
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC= conf.c conf_err.c
|
||||
LIBSRC= conf_err.c conf_lib.c conf_api.c conf_def.c
|
||||
|
||||
LIBOBJ= conf.o conf_err.o
|
||||
LIBOBJ= conf_err.o conf_lib.o conf_api.o conf_def.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= conf.h
|
||||
HEADER= conf_lcl.h $(EXHEADER)
|
||||
EXHEADER= conf.h conf_api.h
|
||||
HEADER= conf_def.h $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
@ -40,7 +40,8 @@ all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB)
|
||||
@echo You may get an error following this line. Please ignore.
|
||||
- $(RANLIB) $(LIB)
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
@ -79,14 +80,30 @@ clean:
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
conf.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
conf.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
conf.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
|
||||
conf.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
conf.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
conf.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
conf.o: ../cryptlib.h conf_lcl.h
|
||||
conf_api.o: ../../include/openssl/bio.h ../../include/openssl/conf.h
|
||||
conf_api.o: ../../include/openssl/conf_api.h ../../include/openssl/crypto.h
|
||||
conf_api.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
|
||||
conf_api.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
conf_api.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
|
||||
conf_api.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
conf_def.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
conf_def.o: ../../include/openssl/conf.h ../../include/openssl/conf_api.h
|
||||
conf_def.o: ../../include/openssl/crypto.h ../../include/openssl/e_os.h
|
||||
conf_def.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
conf_def.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
conf_def.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
|
||||
conf_def.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
conf_def.o: conf_def.h
|
||||
conf_err.o: ../../include/openssl/bio.h ../../include/openssl/conf.h
|
||||
conf_err.o: ../../include/openssl/crypto.h ../../include/openssl/err.h
|
||||
conf_err.o: ../../include/openssl/lhash.h ../../include/openssl/opensslv.h
|
||||
conf_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
conf_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os.h
|
||||
conf_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
conf_err.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
conf_err.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
|
||||
conf_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
conf_lib.o: ../../include/openssl/bio.h ../../include/openssl/conf.h
|
||||
conf_lib.o: ../../include/openssl/conf_api.h ../../include/openssl/crypto.h
|
||||
conf_lib.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
|
||||
conf_lib.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
conf_lib.o: ../../include/openssl/opensslconf.h
|
||||
conf_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
|
||||
conf_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
|
@ -240,7 +240,7 @@ void CRYPTO_destroy_dynlockid(int i)
|
||||
}
|
||||
else
|
||||
#endif
|
||||
if (--(pointer->references) <= 0)
|
||||
if (pointer->references <= 0)
|
||||
{
|
||||
sk_CRYPTO_dynlock_set(dyn_locks, i, NULL);
|
||||
}
|
||||
@ -399,7 +399,7 @@ void CRYPTO_lock(int mode, int type, const char *file, int line)
|
||||
struct CRYPTO_dynlock_value *pointer
|
||||
= CRYPTO_get_dynlock_value(i);
|
||||
|
||||
if (pointer)
|
||||
if (pointer && dynlock_lock_callback)
|
||||
{
|
||||
dynlock_lock_callback(mode, pointer, file, line);
|
||||
}
|
||||
@ -430,7 +430,6 @@ int CRYPTO_add_lock(int *pointer, int amount, int type, const char *file,
|
||||
CRYPTO_get_lock_name(type),
|
||||
file,line);
|
||||
#endif
|
||||
*pointer=ret;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -57,7 +57,8 @@ all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB)
|
||||
@echo You may get an error following this line. Please ignore.
|
||||
- $(RANLIB) $(LIB)
|
||||
@touch lib
|
||||
|
||||
des: des.o cbc3_enc.o lib
|
||||
|
@ -39,7 +39,8 @@ all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB)
|
||||
@echo You may get an error following this line. Please ignore.
|
||||
- $(RANLIB) $(LIB)
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
|
@ -41,7 +41,8 @@ all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB)
|
||||
@echo You may get an error following this line. Please ignore.
|
||||
- $(RANLIB) $(LIB)
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
|
@ -236,6 +236,7 @@ DH *DSA_dup_DH(DSA *r);
|
||||
|
||||
/* Reason codes. */
|
||||
#define DSA_R_DATA_TOO_LARGE_FOR_KEY_SIZE 100
|
||||
#define DSA_R_MISSING_PARAMETERS 101
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
|
@ -85,6 +85,7 @@ static ERR_STRING_DATA DSA_str_functs[]=
|
||||
static ERR_STRING_DATA DSA_str_reasons[]=
|
||||
{
|
||||
{DSA_R_DATA_TOO_LARGE_FOR_KEY_SIZE ,"data too large for key size"},
|
||||
{DSA_R_MISSING_PARAMETERS ,"missing parameters"},
|
||||
{0,NULL}
|
||||
};
|
||||
|
||||
|
@ -105,6 +105,11 @@ static DSA_SIG *dsa_do_sign(const unsigned char *dgst, int dlen, DSA *dsa)
|
||||
int i,reason=ERR_R_BN_LIB;
|
||||
DSA_SIG *ret=NULL;
|
||||
|
||||
if (!dsa->p || !dsa->q || !dsa->g)
|
||||
{
|
||||
reason=DSA_R_MISSING_PARAMETERS;
|
||||
goto err;
|
||||
}
|
||||
BN_init(&m);
|
||||
BN_init(&xr);
|
||||
s=BN_new();
|
||||
@ -167,6 +172,11 @@ static int dsa_sign_setup(DSA *dsa, BN_CTX *ctx_in, BIGNUM **kinvp, BIGNUM **rp)
|
||||
BIGNUM k,*kinv=NULL,*r=NULL;
|
||||
int ret=0;
|
||||
|
||||
if (!dsa->p || !dsa->q || !dsa->g)
|
||||
{
|
||||
DSAerr(DSA_F_DSA_SIGN_SETUP,DSA_R_MISSING_PARAMETERS);
|
||||
return 0;
|
||||
}
|
||||
if (ctx_in == NULL)
|
||||
{
|
||||
if ((ctx=BN_CTX_new()) == NULL) goto err;
|
||||
@ -230,6 +240,17 @@ static int dsa_do_verify(const unsigned char *dgst, int dgst_len, DSA_SIG *sig,
|
||||
BN_init(&u2);
|
||||
BN_init(&t1);
|
||||
|
||||
if (BN_is_zero(sig->r) || sig->r->neg || BN_ucmp(sig->r, dsa->q) >= 0)
|
||||
{
|
||||
ret = 0;
|
||||
goto err;
|
||||
}
|
||||
if (BN_is_zero(sig->s) || sig->s->neg || BN_ucmp(sig->s, dsa->q) >= 0)
|
||||
{
|
||||
ret = 0;
|
||||
goto err;
|
||||
}
|
||||
|
||||
/* Calculate W = inv(S) mod Q
|
||||
* save W in u2 */
|
||||
if ((BN_mod_inverse(&u2,sig->s,dsa->q,ctx)) == NULL) goto err;
|
||||
|
141
crypto/openssl/crypto/dso/Makefile.save
Normal file
141
crypto/openssl/crypto/dso/Makefile.save
Normal file
@ -0,0 +1,141 @@
|
||||
#
|
||||
# SSLeay/crypto/dso/Makefile
|
||||
#
|
||||
|
||||
DIR= dso
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
INCLUDES= -I.. -I../../include
|
||||
CFLAG=-g
|
||||
INSTALL_PREFIX=
|
||||
OPENSSLDIR= /usr/local/ssl
|
||||
INSTALLTOP=/usr/local/ssl
|
||||
MAKE= make -f Makefile.ssl
|
||||
MAKEDEPEND= $(TOP)/util/domd $(TOP)
|
||||
MAKEFILE= Makefile.ssl
|
||||
AR= ar r
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST=
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC= dso_dl.c dso_dlfcn.c dso_err.c dso_lib.c dso_null.c \
|
||||
dso_openssl.c dso_win32.c dso_vms.c
|
||||
LIBOBJ= dso_dl.o dso_dlfcn.o dso_err.o dso_lib.o dso_null.o \
|
||||
dso_openssl.o dso_win32.o dso_vms.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= dso.h
|
||||
HEADER= $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
@echo You may get an error following this line. Please ignore.
|
||||
- $(RANLIB) $(LIB)
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(TOP)/util/point.sh Makefile.ssl Makefile
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@for i in $(EXHEADER) ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
$(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
dso_dl.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
dso_dl.o: ../../include/openssl/crypto.h ../../include/openssl/dso.h
|
||||
dso_dl.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
|
||||
dso_dl.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
dso_dl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
dso_dl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
dso_dl.o: ../../include/openssl/symhacks.h ../cryptlib.h
|
||||
dso_dlfcn.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
dso_dlfcn.o: ../../include/openssl/crypto.h ../../include/openssl/dso.h
|
||||
dso_dlfcn.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
|
||||
dso_dlfcn.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
dso_dlfcn.o: ../../include/openssl/opensslconf.h
|
||||
dso_dlfcn.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
|
||||
dso_dlfcn.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
dso_dlfcn.o: ../cryptlib.h
|
||||
dso_err.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h
|
||||
dso_err.o: ../../include/openssl/dso.h ../../include/openssl/err.h
|
||||
dso_err.o: ../../include/openssl/lhash.h ../../include/openssl/opensslv.h
|
||||
dso_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
dso_err.o: ../../include/openssl/symhacks.h
|
||||
dso_lib.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
dso_lib.o: ../../include/openssl/crypto.h ../../include/openssl/dso.h
|
||||
dso_lib.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
|
||||
dso_lib.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
dso_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
dso_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
dso_lib.o: ../../include/openssl/symhacks.h ../cryptlib.h
|
||||
dso_null.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
dso_null.o: ../../include/openssl/crypto.h ../../include/openssl/dso.h
|
||||
dso_null.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
|
||||
dso_null.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
dso_null.o: ../../include/openssl/opensslconf.h
|
||||
dso_null.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
|
||||
dso_null.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
dso_null.o: ../cryptlib.h
|
||||
dso_openssl.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
dso_openssl.o: ../../include/openssl/crypto.h ../../include/openssl/dso.h
|
||||
dso_openssl.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
|
||||
dso_openssl.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
dso_openssl.o: ../../include/openssl/opensslconf.h
|
||||
dso_openssl.o: ../../include/openssl/opensslv.h
|
||||
dso_openssl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
dso_openssl.o: ../../include/openssl/symhacks.h ../cryptlib.h
|
||||
dso_vms.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
dso_vms.o: ../../include/openssl/crypto.h ../../include/openssl/dso.h
|
||||
dso_vms.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
|
||||
dso_vms.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
dso_vms.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
dso_vms.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
dso_vms.o: ../../include/openssl/symhacks.h ../cryptlib.h
|
||||
dso_win32.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
dso_win32.o: ../../include/openssl/crypto.h ../../include/openssl/dso.h
|
||||
dso_win32.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
|
||||
dso_win32.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
dso_win32.o: ../../include/openssl/opensslconf.h
|
||||
dso_win32.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
|
||||
dso_win32.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
dso_win32.o: ../cryptlib.h
|
@ -39,7 +39,8 @@ all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB)
|
||||
@echo You may get an error following this line. Please ignore.
|
||||
- $(RANLIB) $(LIB)
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
|
@ -58,7 +58,8 @@ all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB)
|
||||
@echo You may get an error following this line. Please ignore.
|
||||
- $(RANLIB) $(LIB)
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
|
@ -67,7 +67,7 @@ static int bf_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key,
|
||||
const unsigned char *iv, int enc);
|
||||
|
||||
IMPLEMENT_BLOCK_CIPHER(bf, bf_ks, BF, bf_ks, NID_bf, 8, 16, 8,
|
||||
0, bf_init_key, NULL,
|
||||
EVP_CIPH_VARIABLE_LENGTH, bf_init_key, NULL,
|
||||
EVP_CIPHER_set_asn1_iv, EVP_CIPHER_get_asn1_iv, NULL)
|
||||
|
||||
static int bf_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key,
|
||||
|
@ -554,9 +554,9 @@ int EVP_read_pw_string(char *buf,int length,const char *prompt,int verify);
|
||||
void EVP_set_pw_prompt(char *prompt);
|
||||
char * EVP_get_pw_prompt(void);
|
||||
|
||||
int EVP_BytesToKey(const EVP_CIPHER *type,EVP_MD *md,unsigned char *salt,
|
||||
unsigned char *data, int datal, int count,
|
||||
unsigned char *key,unsigned char *iv);
|
||||
int EVP_BytesToKey(const EVP_CIPHER *type, EVP_MD *md,
|
||||
const unsigned char *salt, const unsigned char *data, int datal,
|
||||
int count, unsigned char *key, unsigned char *iv);
|
||||
|
||||
int EVP_EncryptInit(EVP_CIPHER_CTX *ctx,const EVP_CIPHER *type,
|
||||
unsigned char *key, unsigned char *iv);
|
||||
|
@ -95,9 +95,9 @@ int EVP_read_pw_string(char *buf, int len, const char *prompt, int verify)
|
||||
#endif
|
||||
}
|
||||
|
||||
int EVP_BytesToKey(const EVP_CIPHER *type, EVP_MD *md, unsigned char *salt,
|
||||
unsigned char *data, int datal, int count, unsigned char *key,
|
||||
unsigned char *iv)
|
||||
int EVP_BytesToKey(const EVP_CIPHER *type, EVP_MD *md,
|
||||
const unsigned char *salt, const unsigned char *data, int datal,
|
||||
int count, unsigned char *key, unsigned char *iv)
|
||||
{
|
||||
EVP_MD_CTX c;
|
||||
unsigned char md_buf[EVP_MAX_MD_SIZE];
|
||||
|
@ -39,7 +39,8 @@ all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB)
|
||||
@echo You may get an error following this line. Please ignore.
|
||||
- $(RANLIB) $(LIB)
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
|
@ -39,7 +39,8 @@ all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB)
|
||||
@echo You may get an error following this line. Please ignore.
|
||||
- $(RANLIB) $(LIB)
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
|
@ -39,7 +39,8 @@ all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB)
|
||||
@echo You may get an error following this line. Please ignore.
|
||||
- $(RANLIB) $(LIB)
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
|
@ -39,7 +39,8 @@ all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB)
|
||||
@echo You may get an error following this line. Please ignore.
|
||||
- $(RANLIB) $(LIB)
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
|
85
crypto/openssl/crypto/md4/Makefile.save
Normal file
85
crypto/openssl/crypto/md4/Makefile.save
Normal file
@ -0,0 +1,85 @@
|
||||
#
|
||||
# SSLeay/crypto/md4/Makefile
|
||||
#
|
||||
|
||||
DIR= md4
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
CPP= $(CC) -E
|
||||
INCLUDES=
|
||||
CFLAG=-g
|
||||
INSTALL_PREFIX=
|
||||
OPENSSLDIR= /usr/local/ssl
|
||||
INSTALLTOP=/usr/local/ssl
|
||||
MAKE= make -f Makefile.ssl
|
||||
MAKEDEPEND= $(TOP)/util/domd $(TOP)
|
||||
MAKEFILE= Makefile.ssl
|
||||
AR= ar r
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST=md4test.c
|
||||
APPS=md4.c
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC=md4_dgst.c md4_one.c
|
||||
LIBOBJ=md4_dgst.o md4_one.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= md4.h
|
||||
HEADER= md4_locl.h $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
@echo You may get an error following this line. Please ignore.
|
||||
- $(RANLIB) $(LIB)
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(TOP)/util/point.sh Makefile.ssl Makefile
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@for i in $(EXHEADER) ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
$(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f asm/mx86unix.cpp *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
md4_dgst.o: ../../include/openssl/md4.h ../../include/openssl/opensslconf.h
|
||||
md4_dgst.o: ../../include/openssl/opensslv.h ../md32_common.h md4_locl.h
|
||||
md4_one.o: ../../include/openssl/md4.h
|
@ -50,7 +50,8 @@ all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB)
|
||||
@echo You may get an error following this line. Please ignore.
|
||||
- $(RANLIB) $(LIB)
|
||||
@touch lib
|
||||
|
||||
# elf
|
||||
|
@ -39,7 +39,8 @@ all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB)
|
||||
@echo You may get an error following this line. Please ignore.
|
||||
- $(RANLIB) $(LIB)
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
|
@ -39,7 +39,8 @@ all: obj_dat.h lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB)
|
||||
@echo You may get an error following this line. Please ignore.
|
||||
- $(RANLIB) $(LIB)
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
|
@ -2,7 +2,7 @@
|
||||
#define HEADER_OPENSSLV_H
|
||||
|
||||
/* Numeric release version identifier:
|
||||
* MMNNFFPPS: major minor fix patch status
|
||||
* MNNFFPPS: major minor fix patch status
|
||||
* The status nibble has one of the values 0 for development, 1 to e for betas
|
||||
* 1 to 14, and f for release. The patch level is exactly that.
|
||||
* For example:
|
||||
@ -25,8 +25,8 @@
|
||||
* (Prior to 0.9.5a beta1, a different scheme was used: MMNNFFRBB for
|
||||
* major minor fix final patch/beta)
|
||||
*/
|
||||
#define OPENSSL_VERSION_NUMBER 0x0090601fL
|
||||
#define OPENSSL_VERSION_TEXT "OpenSSL 0.9.6a 5 Apr 2001"
|
||||
#define OPENSSL_VERSION_NUMBER 0x0090602fL
|
||||
#define OPENSSL_VERSION_TEXT "OpenSSL 0.9.6b 9 Jul 2001"
|
||||
#define OPENSSL_VERSION_PTEXT " part of " OPENSSL_VERSION_TEXT
|
||||
|
||||
|
||||
|
@ -40,7 +40,8 @@ all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB)
|
||||
@echo You may get an error following this line. Please ignore.
|
||||
- $(RANLIB) $(LIB)
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
|
@ -79,7 +79,7 @@ sub main'DWP
|
||||
local($addr,$reg1,$reg2,$idx)=@_;
|
||||
|
||||
$ret="";
|
||||
$addr =~ s/(^|[+ \t])([A-Za-z_]+)($|[+ \t])/$1$under$2$3/;
|
||||
$addr =~ s/(^|[+ \t])([A-Za-z_]+[A-Za-z0-9_]+)($|[+ \t])/$1$under$2$3/;
|
||||
$reg1="$regs{$reg1}" if defined($regs{$reg1});
|
||||
$reg2="$regs{$reg2}" if defined($regs{$reg2});
|
||||
$ret.=$addr if ($addr ne "") && ($addr ne 0);
|
||||
|
@ -45,7 +45,8 @@ all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB)
|
||||
@echo You may get an error following this line. Please ignore.
|
||||
- $(RANLIB) $(LIB)
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
@ -91,15 +92,17 @@ p12_add.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
|
||||
p12_add.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
|
||||
p12_add.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
|
||||
p12_add.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
p12_add.o: ../../include/openssl/idea.h ../../include/openssl/md2.h
|
||||
p12_add.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
|
||||
p12_add.o: ../../include/openssl/md2.h ../../include/openssl/md4.h
|
||||
p12_add.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
|
||||
p12_add.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
p12_add.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h
|
||||
p12_add.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h
|
||||
p12_add.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h
|
||||
p12_add.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h
|
||||
p12_add.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
p12_add.o: ../../include/openssl/stack.h ../../include/openssl/x509.h
|
||||
p12_add.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
p12_add.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
p12_add.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
|
||||
p12_add.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
|
||||
p12_add.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h
|
||||
p12_add.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
p12_add.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
p12_add.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
p12_add.o: ../../include/openssl/x509_vfy.h ../cryptlib.h
|
||||
p12_attr.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
p12_attr.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h
|
||||
@ -108,16 +111,19 @@ p12_attr.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
|
||||
p12_attr.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
|
||||
p12_attr.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
|
||||
p12_attr.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
p12_attr.o: ../../include/openssl/idea.h ../../include/openssl/md2.h
|
||||
p12_attr.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
|
||||
p12_attr.o: ../../include/openssl/md2.h ../../include/openssl/md4.h
|
||||
p12_attr.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
|
||||
p12_attr.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
p12_attr.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
p12_attr.o: ../../include/openssl/opensslconf.h
|
||||
p12_attr.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h
|
||||
p12_attr.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h
|
||||
p12_attr.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h
|
||||
p12_attr.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h
|
||||
p12_attr.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
p12_attr.o: ../../include/openssl/stack.h ../../include/openssl/x509.h
|
||||
p12_attr.o: ../../include/openssl/x509_vfy.h ../cryptlib.h
|
||||
p12_attr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
p12_attr.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
p12_attr.o: ../cryptlib.h
|
||||
p12_bags.o: ../../include/openssl/asn1.h ../../include/openssl/asn1_mac.h
|
||||
p12_bags.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h
|
||||
p12_bags.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
||||
@ -126,16 +132,18 @@ p12_bags.o: ../../include/openssl/des.h ../../include/openssl/dh.h
|
||||
p12_bags.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h
|
||||
p12_bags.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
p12_bags.o: ../../include/openssl/evp.h ../../include/openssl/idea.h
|
||||
p12_bags.o: ../../include/openssl/md2.h ../../include/openssl/md5.h
|
||||
p12_bags.o: ../../include/openssl/mdc2.h ../../include/openssl/objects.h
|
||||
p12_bags.o: ../../include/openssl/opensslconf.h
|
||||
p12_bags.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h
|
||||
p12_bags.o: ../../include/openssl/md4.h ../../include/openssl/md5.h
|
||||
p12_bags.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h
|
||||
p12_bags.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
p12_bags.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h
|
||||
p12_bags.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h
|
||||
p12_bags.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h
|
||||
p12_bags.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h
|
||||
p12_bags.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
p12_bags.o: ../../include/openssl/stack.h ../../include/openssl/x509.h
|
||||
p12_bags.o: ../../include/openssl/x509_vfy.h ../cryptlib.h
|
||||
p12_bags.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
p12_bags.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
p12_bags.o: ../cryptlib.h
|
||||
p12_crpt.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
p12_crpt.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h
|
||||
p12_crpt.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h
|
||||
@ -143,16 +151,19 @@ p12_crpt.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
|
||||
p12_crpt.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
|
||||
p12_crpt.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
|
||||
p12_crpt.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
p12_crpt.o: ../../include/openssl/idea.h ../../include/openssl/md2.h
|
||||
p12_crpt.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
|
||||
p12_crpt.o: ../../include/openssl/md2.h ../../include/openssl/md4.h
|
||||
p12_crpt.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
|
||||
p12_crpt.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
p12_crpt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
p12_crpt.o: ../../include/openssl/opensslconf.h
|
||||
p12_crpt.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h
|
||||
p12_crpt.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h
|
||||
p12_crpt.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h
|
||||
p12_crpt.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h
|
||||
p12_crpt.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
p12_crpt.o: ../../include/openssl/stack.h ../../include/openssl/x509.h
|
||||
p12_crpt.o: ../../include/openssl/x509_vfy.h ../cryptlib.h
|
||||
p12_crpt.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
p12_crpt.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
p12_crpt.o: ../cryptlib.h
|
||||
p12_crt.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
p12_crt.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h
|
||||
p12_crt.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h
|
||||
@ -160,15 +171,17 @@ p12_crt.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
|
||||
p12_crt.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
|
||||
p12_crt.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
|
||||
p12_crt.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
p12_crt.o: ../../include/openssl/idea.h ../../include/openssl/md2.h
|
||||
p12_crt.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
|
||||
p12_crt.o: ../../include/openssl/md2.h ../../include/openssl/md4.h
|
||||
p12_crt.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
|
||||
p12_crt.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
p12_crt.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h
|
||||
p12_crt.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h
|
||||
p12_crt.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h
|
||||
p12_crt.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h
|
||||
p12_crt.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
p12_crt.o: ../../include/openssl/stack.h ../../include/openssl/x509.h
|
||||
p12_crt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
p12_crt.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
p12_crt.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
|
||||
p12_crt.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
|
||||
p12_crt.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h
|
||||
p12_crt.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
p12_crt.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
p12_crt.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
p12_crt.o: ../../include/openssl/x509_vfy.h ../cryptlib.h
|
||||
p12_decr.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
p12_decr.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h
|
||||
@ -177,16 +190,19 @@ p12_decr.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
|
||||
p12_decr.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
|
||||
p12_decr.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
|
||||
p12_decr.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
p12_decr.o: ../../include/openssl/idea.h ../../include/openssl/md2.h
|
||||
p12_decr.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
|
||||
p12_decr.o: ../../include/openssl/md2.h ../../include/openssl/md4.h
|
||||
p12_decr.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
|
||||
p12_decr.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
p12_decr.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
p12_decr.o: ../../include/openssl/opensslconf.h
|
||||
p12_decr.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h
|
||||
p12_decr.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h
|
||||
p12_decr.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h
|
||||
p12_decr.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h
|
||||
p12_decr.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
p12_decr.o: ../../include/openssl/stack.h ../../include/openssl/x509.h
|
||||
p12_decr.o: ../../include/openssl/x509_vfy.h ../cryptlib.h
|
||||
p12_decr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
p12_decr.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
p12_decr.o: ../cryptlib.h
|
||||
p12_init.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
p12_init.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h
|
||||
p12_init.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h
|
||||
@ -194,16 +210,19 @@ p12_init.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
|
||||
p12_init.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
|
||||
p12_init.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
|
||||
p12_init.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
p12_init.o: ../../include/openssl/idea.h ../../include/openssl/md2.h
|
||||
p12_init.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
|
||||
p12_init.o: ../../include/openssl/md2.h ../../include/openssl/md4.h
|
||||
p12_init.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
|
||||
p12_init.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
p12_init.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
p12_init.o: ../../include/openssl/opensslconf.h
|
||||
p12_init.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h
|
||||
p12_init.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h
|
||||
p12_init.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h
|
||||
p12_init.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h
|
||||
p12_init.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
p12_init.o: ../../include/openssl/stack.h ../../include/openssl/x509.h
|
||||
p12_init.o: ../../include/openssl/x509_vfy.h ../cryptlib.h
|
||||
p12_init.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
p12_init.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
p12_init.o: ../cryptlib.h
|
||||
p12_key.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
p12_key.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h
|
||||
p12_key.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h
|
||||
@ -211,15 +230,17 @@ p12_key.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
|
||||
p12_key.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
|
||||
p12_key.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
|
||||
p12_key.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
p12_key.o: ../../include/openssl/idea.h ../../include/openssl/md2.h
|
||||
p12_key.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
|
||||
p12_key.o: ../../include/openssl/md2.h ../../include/openssl/md4.h
|
||||
p12_key.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
|
||||
p12_key.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
p12_key.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h
|
||||
p12_key.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h
|
||||
p12_key.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h
|
||||
p12_key.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h
|
||||
p12_key.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
p12_key.o: ../../include/openssl/stack.h ../../include/openssl/x509.h
|
||||
p12_key.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
p12_key.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
p12_key.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
|
||||
p12_key.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
|
||||
p12_key.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h
|
||||
p12_key.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
p12_key.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
p12_key.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
p12_key.o: ../../include/openssl/x509_vfy.h ../cryptlib.h
|
||||
p12_kiss.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
p12_kiss.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h
|
||||
@ -228,16 +249,19 @@ p12_kiss.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
|
||||
p12_kiss.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
|
||||
p12_kiss.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
|
||||
p12_kiss.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
p12_kiss.o: ../../include/openssl/idea.h ../../include/openssl/md2.h
|
||||
p12_kiss.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
|
||||
p12_kiss.o: ../../include/openssl/md2.h ../../include/openssl/md4.h
|
||||
p12_kiss.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
|
||||
p12_kiss.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
p12_kiss.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
p12_kiss.o: ../../include/openssl/opensslconf.h
|
||||
p12_kiss.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h
|
||||
p12_kiss.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h
|
||||
p12_kiss.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h
|
||||
p12_kiss.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h
|
||||
p12_kiss.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
p12_kiss.o: ../../include/openssl/stack.h ../../include/openssl/x509.h
|
||||
p12_kiss.o: ../../include/openssl/x509_vfy.h ../cryptlib.h
|
||||
p12_kiss.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
p12_kiss.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
p12_kiss.o: ../cryptlib.h
|
||||
p12_lib.o: ../../include/openssl/asn1.h ../../include/openssl/asn1_mac.h
|
||||
p12_lib.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h
|
||||
p12_lib.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
||||
@ -246,14 +270,16 @@ p12_lib.o: ../../include/openssl/des.h ../../include/openssl/dh.h
|
||||
p12_lib.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h
|
||||
p12_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
p12_lib.o: ../../include/openssl/evp.h ../../include/openssl/idea.h
|
||||
p12_lib.o: ../../include/openssl/md2.h ../../include/openssl/md5.h
|
||||
p12_lib.o: ../../include/openssl/mdc2.h ../../include/openssl/objects.h
|
||||
p12_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
p12_lib.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
|
||||
p12_lib.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
|
||||
p12_lib.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h
|
||||
p12_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
p12_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
p12_lib.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h
|
||||
p12_lib.o: ../../include/openssl/md4.h ../../include/openssl/md5.h
|
||||
p12_lib.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h
|
||||
p12_lib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
p12_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h
|
||||
p12_lib.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h
|
||||
p12_lib.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h
|
||||
p12_lib.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h
|
||||
p12_lib.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
p12_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
p12_lib.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
p12_lib.o: ../cryptlib.h
|
||||
p12_mac.o: ../../include/openssl/asn1.h ../../include/openssl/asn1_mac.h
|
||||
@ -264,14 +290,16 @@ p12_mac.o: ../../include/openssl/des.h ../../include/openssl/dh.h
|
||||
p12_mac.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h
|
||||
p12_mac.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
p12_mac.o: ../../include/openssl/evp.h ../../include/openssl/idea.h
|
||||
p12_mac.o: ../../include/openssl/md2.h ../../include/openssl/md5.h
|
||||
p12_mac.o: ../../include/openssl/mdc2.h ../../include/openssl/objects.h
|
||||
p12_mac.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
p12_mac.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
|
||||
p12_mac.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
|
||||
p12_mac.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h
|
||||
p12_mac.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
p12_mac.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
p12_mac.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h
|
||||
p12_mac.o: ../../include/openssl/md4.h ../../include/openssl/md5.h
|
||||
p12_mac.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h
|
||||
p12_mac.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
p12_mac.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h
|
||||
p12_mac.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h
|
||||
p12_mac.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h
|
||||
p12_mac.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h
|
||||
p12_mac.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
p12_mac.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
p12_mac.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
p12_mac.o: ../cryptlib.h
|
||||
p12_mutl.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
@ -282,25 +310,28 @@ p12_mutl.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
|
||||
p12_mutl.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
|
||||
p12_mutl.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
p12_mutl.o: ../../include/openssl/hmac.h ../../include/openssl/idea.h
|
||||
p12_mutl.o: ../../include/openssl/md2.h ../../include/openssl/md5.h
|
||||
p12_mutl.o: ../../include/openssl/mdc2.h ../../include/openssl/objects.h
|
||||
p12_mutl.o: ../../include/openssl/opensslconf.h
|
||||
p12_mutl.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h
|
||||
p12_mutl.o: ../../include/openssl/md4.h ../../include/openssl/md5.h
|
||||
p12_mutl.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h
|
||||
p12_mutl.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
p12_mutl.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h
|
||||
p12_mutl.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
|
||||
p12_mutl.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
|
||||
p12_mutl.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h
|
||||
p12_mutl.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
p12_mutl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
p12_mutl.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
p12_mutl.o: ../cryptlib.h
|
||||
p12_mutl.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
p12_mutl.o: ../../include/openssl/x509_vfy.h ../cryptlib.h
|
||||
p12_npas.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
p12_npas.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h
|
||||
p12_npas.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h
|
||||
p12_npas.o: ../../include/openssl/des.h ../../include/openssl/dh.h
|
||||
p12_npas.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
|
||||
p12_npas.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
p12_npas.o: ../../include/openssl/idea.h ../../include/openssl/md2.h
|
||||
p12_npas.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
|
||||
p12_npas.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h
|
||||
p12_npas.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
|
||||
p12_npas.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
|
||||
p12_npas.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
p12_npas.o: ../../include/openssl/evp.h ../../include/openssl/idea.h
|
||||
p12_npas.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h
|
||||
p12_npas.o: ../../include/openssl/md4.h ../../include/openssl/md5.h
|
||||
p12_npas.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h
|
||||
p12_npas.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
p12_npas.o: ../../include/openssl/opensslv.h ../../include/openssl/pem.h
|
||||
p12_npas.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs12.h
|
||||
@ -308,8 +339,8 @@ p12_npas.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h
|
||||
p12_npas.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h
|
||||
p12_npas.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h
|
||||
p12_npas.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
p12_npas.o: ../../include/openssl/stack.h ../../include/openssl/x509.h
|
||||
p12_npas.o: ../../include/openssl/x509_vfy.h
|
||||
p12_npas.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
p12_npas.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
p12_sbag.o: ../../include/openssl/asn1.h ../../include/openssl/asn1_mac.h
|
||||
p12_sbag.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h
|
||||
p12_sbag.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
||||
@ -318,16 +349,18 @@ p12_sbag.o: ../../include/openssl/des.h ../../include/openssl/dh.h
|
||||
p12_sbag.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h
|
||||
p12_sbag.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
p12_sbag.o: ../../include/openssl/evp.h ../../include/openssl/idea.h
|
||||
p12_sbag.o: ../../include/openssl/md2.h ../../include/openssl/md5.h
|
||||
p12_sbag.o: ../../include/openssl/mdc2.h ../../include/openssl/objects.h
|
||||
p12_sbag.o: ../../include/openssl/opensslconf.h
|
||||
p12_sbag.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h
|
||||
p12_sbag.o: ../../include/openssl/md4.h ../../include/openssl/md5.h
|
||||
p12_sbag.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h
|
||||
p12_sbag.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
p12_sbag.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h
|
||||
p12_sbag.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h
|
||||
p12_sbag.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h
|
||||
p12_sbag.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h
|
||||
p12_sbag.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
p12_sbag.o: ../../include/openssl/stack.h ../../include/openssl/x509.h
|
||||
p12_sbag.o: ../../include/openssl/x509_vfy.h ../cryptlib.h
|
||||
p12_sbag.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
p12_sbag.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
p12_sbag.o: ../cryptlib.h
|
||||
p12_utl.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
p12_utl.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h
|
||||
p12_utl.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h
|
||||
@ -335,29 +368,33 @@ p12_utl.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
|
||||
p12_utl.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
|
||||
p12_utl.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
|
||||
p12_utl.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
p12_utl.o: ../../include/openssl/idea.h ../../include/openssl/md2.h
|
||||
p12_utl.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
|
||||
p12_utl.o: ../../include/openssl/md2.h ../../include/openssl/md4.h
|
||||
p12_utl.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
|
||||
p12_utl.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
p12_utl.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h
|
||||
p12_utl.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h
|
||||
p12_utl.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h
|
||||
p12_utl.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h
|
||||
p12_utl.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
p12_utl.o: ../../include/openssl/stack.h ../../include/openssl/x509.h
|
||||
p12_utl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
p12_utl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
p12_utl.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
|
||||
p12_utl.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
|
||||
p12_utl.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h
|
||||
p12_utl.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
p12_utl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
p12_utl.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
p12_utl.o: ../../include/openssl/x509_vfy.h ../cryptlib.h
|
||||
pk12err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
pk12err.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h
|
||||
pk12err.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h
|
||||
pk12err.o: ../../include/openssl/des.h ../../include/openssl/dh.h
|
||||
pk12err.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
|
||||
pk12err.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
pk12err.o: ../../include/openssl/idea.h ../../include/openssl/md2.h
|
||||
pk12err.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
|
||||
pk12err.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h
|
||||
pk12err.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
|
||||
pk12err.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
|
||||
pk12err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
pk12err.o: ../../include/openssl/evp.h ../../include/openssl/idea.h
|
||||
pk12err.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h
|
||||
pk12err.o: ../../include/openssl/md4.h ../../include/openssl/md5.h
|
||||
pk12err.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h
|
||||
pk12err.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
pk12err.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h
|
||||
pk12err.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h
|
||||
pk12err.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h
|
||||
pk12err.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h
|
||||
pk12err.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
pk12err.o: ../../include/openssl/stack.h ../../include/openssl/x509.h
|
||||
pk12err.o: ../../include/openssl/x509_vfy.h
|
||||
pk12err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
pk12err.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
|
@ -58,7 +58,8 @@ verify: verify.o example.o lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB)
|
||||
@echo You may get an error following this line. Please ignore.
|
||||
- $(RANLIB) $(LIB)
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
@ -99,12 +100,14 @@ clean:
|
||||
|
||||
pk7_attr.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
pk7_attr.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h
|
||||
pk7_attr.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h
|
||||
pk7_attr.o: ../../include/openssl/des.h ../../include/openssl/dh.h
|
||||
pk7_attr.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
|
||||
pk7_attr.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
pk7_attr.o: ../../include/openssl/idea.h ../../include/openssl/md2.h
|
||||
pk7_attr.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
|
||||
pk7_attr.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h
|
||||
pk7_attr.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
|
||||
pk7_attr.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
|
||||
pk7_attr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
pk7_attr.o: ../../include/openssl/evp.h ../../include/openssl/idea.h
|
||||
pk7_attr.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h
|
||||
pk7_attr.o: ../../include/openssl/md4.h ../../include/openssl/md5.h
|
||||
pk7_attr.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h
|
||||
pk7_attr.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
pk7_attr.o: ../../include/openssl/opensslv.h ../../include/openssl/pem.h
|
||||
pk7_attr.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h
|
||||
@ -112,26 +115,29 @@ pk7_attr.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
|
||||
pk7_attr.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h
|
||||
pk7_attr.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
pk7_attr.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
pk7_attr.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
pk7_attr.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
pk7_attr.o: ../../include/openssl/x509_vfy.h
|
||||
pk7_doit.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
pk7_doit.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h
|
||||
pk7_doit.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h
|
||||
pk7_doit.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
pk7_doit.o: ../../include/openssl/des.h ../../include/openssl/dh.h
|
||||
pk7_doit.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h
|
||||
pk7_doit.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
pk7_doit.o: ../../include/openssl/evp.h ../../include/openssl/idea.h
|
||||
pk7_doit.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h
|
||||
pk7_doit.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
|
||||
pk7_doit.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
pk7_doit.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
|
||||
pk7_doit.o: ../../include/openssl/md2.h ../../include/openssl/md4.h
|
||||
pk7_doit.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
|
||||
pk7_doit.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
pk7_doit.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
pk7_doit.o: ../../include/openssl/opensslconf.h
|
||||
pk7_doit.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h
|
||||
pk7_doit.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h
|
||||
pk7_doit.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h
|
||||
pk7_doit.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h
|
||||
pk7_doit.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
pk7_doit.o: ../../include/openssl/stack.h ../../include/openssl/x509.h
|
||||
pk7_doit.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
|
||||
pk7_doit.o: ../cryptlib.h
|
||||
pk7_doit.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
pk7_doit.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
pk7_doit.o: ../../include/openssl/x509v3.h ../cryptlib.h
|
||||
pk7_lib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
pk7_lib.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h
|
||||
pk7_lib.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h
|
||||
@ -139,14 +145,16 @@ pk7_lib.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
|
||||
pk7_lib.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
|
||||
pk7_lib.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
|
||||
pk7_lib.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
pk7_lib.o: ../../include/openssl/idea.h ../../include/openssl/md2.h
|
||||
pk7_lib.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
|
||||
pk7_lib.o: ../../include/openssl/md2.h ../../include/openssl/md4.h
|
||||
pk7_lib.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
|
||||
pk7_lib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
pk7_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h
|
||||
pk7_lib.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
|
||||
pk7_lib.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h
|
||||
pk7_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
pk7_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
pk7_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
pk7_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
pk7_lib.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h
|
||||
pk7_lib.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h
|
||||
pk7_lib.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h
|
||||
pk7_lib.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
pk7_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
pk7_lib.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
pk7_lib.o: ../cryptlib.h
|
||||
pk7_mime.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
@ -156,47 +164,55 @@ pk7_mime.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
|
||||
pk7_mime.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
|
||||
pk7_mime.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
|
||||
pk7_mime.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
pk7_mime.o: ../../include/openssl/idea.h ../../include/openssl/md2.h
|
||||
pk7_mime.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
|
||||
pk7_mime.o: ../../include/openssl/md2.h ../../include/openssl/md4.h
|
||||
pk7_mime.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
|
||||
pk7_mime.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
pk7_mime.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
pk7_mime.o: ../../include/openssl/opensslconf.h
|
||||
pk7_mime.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h
|
||||
pk7_mime.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h
|
||||
pk7_mime.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h
|
||||
pk7_mime.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h
|
||||
pk7_mime.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
pk7_mime.o: ../../include/openssl/stack.h ../../include/openssl/x509.h
|
||||
pk7_mime.o: ../../include/openssl/x509_vfy.h ../cryptlib.h
|
||||
pk7_mime.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
pk7_mime.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
pk7_mime.o: ../cryptlib.h
|
||||
pk7_smime.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
pk7_smime.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h
|
||||
pk7_smime.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h
|
||||
pk7_smime.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
pk7_smime.o: ../../include/openssl/des.h ../../include/openssl/dh.h
|
||||
pk7_smime.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h
|
||||
pk7_smime.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
pk7_smime.o: ../../include/openssl/evp.h ../../include/openssl/idea.h
|
||||
pk7_smime.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h
|
||||
pk7_smime.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
|
||||
pk7_smime.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
pk7_smime.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
|
||||
pk7_smime.o: ../../include/openssl/md2.h ../../include/openssl/md4.h
|
||||
pk7_smime.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
|
||||
pk7_smime.o: ../../include/openssl/objects.h
|
||||
pk7_smime.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
pk7_smime.o: ../../include/openssl/opensslconf.h
|
||||
pk7_smime.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h
|
||||
pk7_smime.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
|
||||
pk7_smime.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h
|
||||
pk7_smime.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
pk7_smime.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
pk7_smime.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
pk7_smime.o: ../../include/openssl/x509v3.h ../cryptlib.h
|
||||
pk7_smime.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
pk7_smime.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
|
||||
pk7_smime.o: ../cryptlib.h
|
||||
pkcs7err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
pkcs7err.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h
|
||||
pkcs7err.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h
|
||||
pkcs7err.o: ../../include/openssl/des.h ../../include/openssl/dh.h
|
||||
pkcs7err.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
|
||||
pkcs7err.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
pkcs7err.o: ../../include/openssl/idea.h ../../include/openssl/md2.h
|
||||
pkcs7err.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
|
||||
pkcs7err.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h
|
||||
pkcs7err.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
|
||||
pkcs7err.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
|
||||
pkcs7err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
pkcs7err.o: ../../include/openssl/evp.h ../../include/openssl/idea.h
|
||||
pkcs7err.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h
|
||||
pkcs7err.o: ../../include/openssl/md4.h ../../include/openssl/md5.h
|
||||
pkcs7err.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h
|
||||
pkcs7err.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
pkcs7err.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h
|
||||
pkcs7err.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
|
||||
pkcs7err.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h
|
||||
pkcs7err.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
pkcs7err.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
pkcs7err.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
pkcs7err.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
pkcs7err.o: ../../include/openssl/x509_vfy.h
|
||||
|
@ -39,7 +39,8 @@ all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB)
|
||||
@echo You may get an error following this line. Please ignore.
|
||||
- $(RANLIB) $(LIB)
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
|
@ -141,10 +141,11 @@ static long md_count[2]={0,0};
|
||||
static double entropy=0;
|
||||
static int initialized=0;
|
||||
|
||||
/* This should be set to 1 only when ssleay_rand_add() is called inside
|
||||
an already locked state, so it doesn't try to lock and thereby cause
|
||||
a hang. And it should always be reset back to 0 before unlocking. */
|
||||
static int add_do_not_lock=0;
|
||||
static unsigned int crypto_lock_rand = 0; /* may be set only when a thread
|
||||
* holds CRYPTO_LOCK_RAND
|
||||
* (to prevent double locking) */
|
||||
static unsigned long locking_thread = 0; /* valid iff crypto_lock_rand is set */
|
||||
|
||||
|
||||
#ifdef PREDICT
|
||||
int rand_predictable=0;
|
||||
@ -191,6 +192,7 @@ static void ssleay_rand_add(const void *buf, int num, double add)
|
||||
long md_c[2];
|
||||
unsigned char local_md[MD_DIGEST_LENGTH];
|
||||
MD_CTX m;
|
||||
int do_not_lock;
|
||||
|
||||
/*
|
||||
* (Based on the rand(3) manpage)
|
||||
@ -207,7 +209,10 @@ static void ssleay_rand_add(const void *buf, int num, double add)
|
||||
* hash function.
|
||||
*/
|
||||
|
||||
if (!add_do_not_lock) CRYPTO_w_lock(CRYPTO_LOCK_RAND);
|
||||
/* check if we already have the lock */
|
||||
do_not_lock = crypto_lock_rand && (locking_thread == CRYPTO_thread_id());
|
||||
|
||||
if (!do_not_lock) CRYPTO_w_lock(CRYPTO_LOCK_RAND);
|
||||
st_idx=state_index;
|
||||
|
||||
/* use our own copies of the counters so that even
|
||||
@ -239,7 +244,7 @@ static void ssleay_rand_add(const void *buf, int num, double add)
|
||||
|
||||
md_count[1] += (num / MD_DIGEST_LENGTH) + (num % MD_DIGEST_LENGTH > 0);
|
||||
|
||||
if (!add_do_not_lock) CRYPTO_w_unlock(CRYPTO_LOCK_RAND);
|
||||
if (!do_not_lock) CRYPTO_w_unlock(CRYPTO_LOCK_RAND);
|
||||
|
||||
for (i=0; i<num; i+=MD_DIGEST_LENGTH)
|
||||
{
|
||||
@ -281,7 +286,7 @@ static void ssleay_rand_add(const void *buf, int num, double add)
|
||||
}
|
||||
memset((char *)&m,0,sizeof(m));
|
||||
|
||||
if (!add_do_not_lock) CRYPTO_w_lock(CRYPTO_LOCK_RAND);
|
||||
if (!do_not_lock) CRYPTO_w_lock(CRYPTO_LOCK_RAND);
|
||||
/* Don't just copy back local_md into md -- this could mean that
|
||||
* other thread's seeding remains without effect (except for
|
||||
* the incremented counter). By XORing it we keep at least as
|
||||
@ -292,7 +297,7 @@ static void ssleay_rand_add(const void *buf, int num, double add)
|
||||
}
|
||||
if (entropy < ENTROPY_NEEDED) /* stop counting when we have enough */
|
||||
entropy += add;
|
||||
if (!add_do_not_lock) CRYPTO_w_unlock(CRYPTO_LOCK_RAND);
|
||||
if (!do_not_lock) CRYPTO_w_unlock(CRYPTO_LOCK_RAND);
|
||||
|
||||
#if !defined(THREADS) && !defined(WIN32)
|
||||
assert(md_c[1] == md_count[1]);
|
||||
@ -308,6 +313,7 @@ static int ssleay_rand_bytes(unsigned char *buf, int num)
|
||||
{
|
||||
static volatile int stirred_pool = 0;
|
||||
int i,j,k,st_num,st_idx;
|
||||
int num_ceil;
|
||||
int ok;
|
||||
long md_c[2];
|
||||
unsigned char local_md[MD_DIGEST_LENGTH];
|
||||
@ -328,33 +334,42 @@ static int ssleay_rand_bytes(unsigned char *buf, int num)
|
||||
}
|
||||
#endif
|
||||
|
||||
if (num <= 0)
|
||||
return 1;
|
||||
|
||||
/* round upwards to multiple of MD_DIGEST_LENGTH/2 */
|
||||
num_ceil = (1 + (num-1)/(MD_DIGEST_LENGTH/2)) * (MD_DIGEST_LENGTH/2);
|
||||
|
||||
/*
|
||||
* (Based on the rand(3) manpage:)
|
||||
*
|
||||
* For each group of 10 bytes (or less), we do the following:
|
||||
*
|
||||
* Input into the hash function the top 10 bytes from the
|
||||
* local 'md' (which is initialized from the global 'md'
|
||||
* before any bytes are generated), the bytes that are
|
||||
* to be overwritten by the random bytes, and bytes from the
|
||||
* 'state' (incrementing looping index). From this digest output
|
||||
* (which is kept in 'md'), the top (up to) 10 bytes are
|
||||
* returned to the caller and the bottom (up to) 10 bytes are xored
|
||||
* into the 'state'.
|
||||
* Input into the hash function the local 'md' (which is initialized from
|
||||
* the global 'md' before any bytes are generated), the bytes that are to
|
||||
* be overwritten by the random bytes, and bytes from the 'state'
|
||||
* (incrementing looping index). From this digest output (which is kept
|
||||
* in 'md'), the top (up to) 10 bytes are returned to the caller and the
|
||||
* bottom 10 bytes are xored into the 'state'.
|
||||
*
|
||||
* Finally, after we have finished 'num' random bytes for the
|
||||
* caller, 'count' (which is incremented) and the local and global 'md'
|
||||
* are fed into the hash function and the results are kept in the
|
||||
* global 'md'.
|
||||
*/
|
||||
|
||||
if (!initialized)
|
||||
RAND_poll();
|
||||
|
||||
CRYPTO_w_lock(CRYPTO_LOCK_RAND);
|
||||
add_do_not_lock = 1; /* Since we call ssleay_rand_add while in
|
||||
this locked state. */
|
||||
|
||||
initialized = 1;
|
||||
/* prevent ssleay_rand_bytes() from trying to obtain the lock again */
|
||||
crypto_lock_rand = 1;
|
||||
locking_thread = CRYPTO_thread_id();
|
||||
|
||||
if (!initialized)
|
||||
{
|
||||
RAND_poll();
|
||||
initialized = 1;
|
||||
}
|
||||
|
||||
if (!stirred_pool)
|
||||
do_stir_pool = 1;
|
||||
|
||||
@ -380,11 +395,11 @@ static int ssleay_rand_bytes(unsigned char *buf, int num)
|
||||
|
||||
if (do_stir_pool)
|
||||
{
|
||||
/* Our output function chains only half of 'md', so we better
|
||||
* make sure that the required entropy gets 'evenly distributed'
|
||||
* through 'state', our randomness pool. The input function
|
||||
* (ssleay_rand_add) chains all of 'md', which makes it more
|
||||
* suitable for this purpose.
|
||||
/* In the output function only half of 'md' remains secret,
|
||||
* so we better make sure that the required entropy gets
|
||||
* 'evenly distributed' through 'state', our randomness pool.
|
||||
* The input function (ssleay_rand_add) chains all of 'md',
|
||||
* which makes it more suitable for this purpose.
|
||||
*/
|
||||
|
||||
int n = STATE_SIZE; /* so that the complete pool gets accessed */
|
||||
@ -409,21 +424,23 @@ static int ssleay_rand_bytes(unsigned char *buf, int num)
|
||||
md_c[1] = md_count[1];
|
||||
memcpy(local_md, md, sizeof md);
|
||||
|
||||
state_index+=num;
|
||||
state_index+=num_ceil;
|
||||
if (state_index > state_num)
|
||||
state_index %= state_num;
|
||||
|
||||
/* state[st_idx], ..., state[(st_idx + num - 1) % st_num]
|
||||
/* state[st_idx], ..., state[(st_idx + num_ceil - 1) % st_num]
|
||||
* are now ours (but other threads may use them too) */
|
||||
|
||||
md_count[0] += 1;
|
||||
|
||||
add_do_not_lock = 0; /* If this would ever be forgotten, we can
|
||||
expect any evil god to eat our souls. */
|
||||
/* before unlocking, we must clear 'crypto_lock_rand' */
|
||||
crypto_lock_rand = 0;
|
||||
locking_thread = 0;
|
||||
CRYPTO_w_unlock(CRYPTO_LOCK_RAND);
|
||||
|
||||
while (num > 0)
|
||||
{
|
||||
/* num_ceil -= MD_DIGEST_LENGTH/2 */
|
||||
j=(num >= MD_DIGEST_LENGTH/2)?MD_DIGEST_LENGTH/2:num;
|
||||
num-=j;
|
||||
MD_Init(&m);
|
||||
@ -434,27 +451,28 @@ static int ssleay_rand_bytes(unsigned char *buf, int num)
|
||||
curr_pid = 0;
|
||||
}
|
||||
#endif
|
||||
MD_Update(&m,&(local_md[MD_DIGEST_LENGTH/2]),MD_DIGEST_LENGTH/2);
|
||||
MD_Update(&m,local_md,MD_DIGEST_LENGTH);
|
||||
MD_Update(&m,(unsigned char *)&(md_c[0]),sizeof(md_c));
|
||||
#ifndef PURIFY
|
||||
MD_Update(&m,buf,j); /* purify complains */
|
||||
#endif
|
||||
k=(st_idx+j)-st_num;
|
||||
k=(st_idx+MD_DIGEST_LENGTH/2)-st_num;
|
||||
if (k > 0)
|
||||
{
|
||||
MD_Update(&m,&(state[st_idx]),j-k);
|
||||
MD_Update(&m,&(state[st_idx]),MD_DIGEST_LENGTH/2-k);
|
||||
MD_Update(&m,&(state[0]),k);
|
||||
}
|
||||
else
|
||||
MD_Update(&m,&(state[st_idx]),j);
|
||||
MD_Update(&m,&(state[st_idx]),MD_DIGEST_LENGTH/2);
|
||||
MD_Final(local_md,&m);
|
||||
|
||||
for (i=0; i<j; i++)
|
||||
for (i=0; i<MD_DIGEST_LENGTH/2; i++)
|
||||
{
|
||||
state[st_idx++]^=local_md[i]; /* may compete with other threads */
|
||||
*(buf++)=local_md[i+MD_DIGEST_LENGTH/2];
|
||||
if (st_idx >= st_num)
|
||||
st_idx=0;
|
||||
if (i < j)
|
||||
*(buf++)=local_md[i+MD_DIGEST_LENGTH/2];
|
||||
}
|
||||
}
|
||||
|
||||
@ -483,11 +501,12 @@ static int ssleay_rand_bytes(unsigned char *buf, int num)
|
||||
static int ssleay_rand_pseudo_bytes(unsigned char *buf, int num)
|
||||
{
|
||||
int ret;
|
||||
unsigned long err;
|
||||
|
||||
ret = RAND_bytes(buf, num);
|
||||
if (ret == 0)
|
||||
{
|
||||
long err = ERR_peek_error();
|
||||
err = ERR_peek_error();
|
||||
if (ERR_GET_LIB(err) == ERR_LIB_RAND &&
|
||||
ERR_GET_REASON(err) == RAND_R_PRNG_NOT_SEEDED)
|
||||
(void)ERR_get_error();
|
||||
@ -498,14 +517,37 @@ static int ssleay_rand_pseudo_bytes(unsigned char *buf, int num)
|
||||
static int ssleay_rand_status(void)
|
||||
{
|
||||
int ret;
|
||||
int do_not_lock;
|
||||
|
||||
/* check if we already have the lock
|
||||
* (could happen if a RAND_poll() implementation calls RAND_status()) */
|
||||
do_not_lock = crypto_lock_rand && (locking_thread == CRYPTO_thread_id());
|
||||
|
||||
if (!do_not_lock)
|
||||
{
|
||||
CRYPTO_w_lock(CRYPTO_LOCK_RAND);
|
||||
|
||||
/* prevent ssleay_rand_bytes() from trying to obtain the lock again */
|
||||
crypto_lock_rand = 1;
|
||||
locking_thread = CRYPTO_thread_id();
|
||||
}
|
||||
|
||||
if (!initialized)
|
||||
{
|
||||
RAND_poll();
|
||||
initialized = 1;
|
||||
}
|
||||
|
||||
CRYPTO_w_lock(CRYPTO_LOCK_RAND);
|
||||
initialized = 1;
|
||||
ret = entropy >= ENTROPY_NEEDED;
|
||||
CRYPTO_w_unlock(CRYPTO_LOCK_RAND);
|
||||
|
||||
if (!do_not_lock)
|
||||
{
|
||||
/* before unlocking, we must clear 'crypto_lock_rand' */
|
||||
crypto_lock_rand = 0;
|
||||
locking_thread = 0;
|
||||
|
||||
CRYPTO_w_unlock(CRYPTO_LOCK_RAND);
|
||||
}
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
@ -211,6 +211,12 @@ const char *RAND_file_name(char *buf, size_t size)
|
||||
{
|
||||
if (OPENSSL_issetugid() == 0)
|
||||
s=getenv("HOME");
|
||||
#ifdef DEFAULT_HOME
|
||||
if (s == NULL)
|
||||
{
|
||||
s = DEFAULT_HOME;
|
||||
}
|
||||
#endif
|
||||
if (s != NULL && (strlen(s)+strlen(RFILE)+2 < size))
|
||||
{
|
||||
strcpy(buf,s);
|
||||
@ -220,7 +226,7 @@ const char *RAND_file_name(char *buf, size_t size)
|
||||
strcat(buf,RFILE);
|
||||
ret=buf;
|
||||
}
|
||||
else
|
||||
else
|
||||
buf[0] = '\0'; /* no file name */
|
||||
}
|
||||
return(ret);
|
||||
|
@ -39,7 +39,8 @@ all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB)
|
||||
@echo You may get an error following this line. Please ignore.
|
||||
- $(RANLIB) $(LIB)
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
|
@ -47,7 +47,8 @@ all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB)
|
||||
@echo You may get an error following this line. Please ignore.
|
||||
- $(RANLIB) $(LIB)
|
||||
@touch lib
|
||||
|
||||
# elf
|
||||
|
@ -44,7 +44,8 @@ all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB)
|
||||
@echo You may get an error following this line. Please ignore.
|
||||
- $(RANLIB) $(LIB)
|
||||
@touch lib
|
||||
|
||||
# elf
|
||||
|
@ -42,7 +42,8 @@ all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB)
|
||||
@echo You may get an error following this line. Please ignore.
|
||||
- $(RANLIB) $(LIB)
|
||||
@touch lib
|
||||
|
||||
# elf
|
||||
|
@ -41,7 +41,8 @@ all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB)
|
||||
@echo You may get an error following this line. Please ignore.
|
||||
- $(RANLIB) $(LIB)
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
|
@ -77,14 +77,16 @@ int RSA_padding_check_PKCS1_OAEP(unsigned char *to, int tlen,
|
||||
int i, dblen, mlen = -1;
|
||||
unsigned char *maskeddb;
|
||||
int lzero;
|
||||
unsigned char *db, seed[SHA_DIGEST_LENGTH], phash[SHA_DIGEST_LENGTH];
|
||||
unsigned char *db = NULL, seed[SHA_DIGEST_LENGTH], phash[SHA_DIGEST_LENGTH];
|
||||
|
||||
if (--num < 2 * SHA_DIGEST_LENGTH + 1)
|
||||
{
|
||||
RSAerr(RSA_F_RSA_PADDING_CHECK_PKCS1_OAEP, RSA_R_OAEP_DECODING_ERROR);
|
||||
return (-1);
|
||||
}
|
||||
goto decoding_err;
|
||||
|
||||
lzero = num - flen;
|
||||
if (lzero < 0)
|
||||
goto decoding_err;
|
||||
maskeddb = from - lzero + SHA_DIGEST_LENGTH;
|
||||
|
||||
dblen = num - SHA_DIGEST_LENGTH;
|
||||
db = OPENSSL_malloc(dblen);
|
||||
if (db == NULL)
|
||||
@ -93,9 +95,6 @@ int RSA_padding_check_PKCS1_OAEP(unsigned char *to, int tlen,
|
||||
return (-1);
|
||||
}
|
||||
|
||||
lzero = num - flen;
|
||||
maskeddb = from - lzero + SHA_DIGEST_LENGTH;
|
||||
|
||||
MGF1(seed, SHA_DIGEST_LENGTH, maskeddb, dblen);
|
||||
for (i = lzero; i < SHA_DIGEST_LENGTH; i++)
|
||||
seed[i] ^= from[i - lzero];
|
||||
@ -107,21 +106,20 @@ int RSA_padding_check_PKCS1_OAEP(unsigned char *to, int tlen,
|
||||
SHA1(param, plen, phash);
|
||||
|
||||
if (memcmp(db, phash, SHA_DIGEST_LENGTH) != 0)
|
||||
RSAerr(RSA_F_RSA_PADDING_CHECK_PKCS1_OAEP, RSA_R_OAEP_DECODING_ERROR);
|
||||
goto decoding_err;
|
||||
else
|
||||
{
|
||||
for (i = SHA_DIGEST_LENGTH; i < dblen; i++)
|
||||
if (db[i] != 0x00)
|
||||
break;
|
||||
if (db[i] != 0x01 || i++ >= dblen)
|
||||
RSAerr(RSA_F_RSA_PADDING_CHECK_PKCS1_OAEP,
|
||||
RSA_R_OAEP_DECODING_ERROR);
|
||||
goto decoding_err;
|
||||
else
|
||||
{
|
||||
mlen = dblen - i;
|
||||
if (tlen < mlen)
|
||||
{
|
||||
RSAerr(RSA_F_RSA_PADDING_ADD_PKCS1_OAEP, RSA_R_DATA_TOO_LARGE);
|
||||
RSAerr(RSA_F_RSA_PADDING_CHECK_PKCS1_OAEP, RSA_R_DATA_TOO_LARGE);
|
||||
mlen = -1;
|
||||
}
|
||||
else
|
||||
@ -130,6 +128,13 @@ int RSA_padding_check_PKCS1_OAEP(unsigned char *to, int tlen,
|
||||
}
|
||||
OPENSSL_free(db);
|
||||
return (mlen);
|
||||
|
||||
decoding_err:
|
||||
/* to avoid chosen ciphertext attacks, the error message should not reveal
|
||||
* which kind of decoding error happened */
|
||||
RSAerr(RSA_F_RSA_PADDING_CHECK_PKCS1_OAEP, RSA_R_OAEP_DECODING_ERROR);
|
||||
if (db != NULL) OPENSSL_free(db);
|
||||
return -1;
|
||||
}
|
||||
|
||||
int MGF1(unsigned char *mask, long len, unsigned char *seed, long seedlen)
|
||||
|
@ -42,7 +42,8 @@ all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB)
|
||||
@echo You may get an error following this line. Please ignore.
|
||||
- $(RANLIB) $(LIB)
|
||||
@touch lib
|
||||
|
||||
# elf
|
||||
|
@ -39,7 +39,8 @@ all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB)
|
||||
@echo You may get an error following this line. Please ignore.
|
||||
- $(RANLIB) $(LIB)
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
|
@ -39,7 +39,8 @@ all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB)
|
||||
@echo You may get an error following this line. Please ignore.
|
||||
- $(RANLIB) $(LIB)
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
@ -83,5 +84,5 @@ txt_db.o: ../../include/openssl/crypto.h ../../include/openssl/e_os.h
|
||||
txt_db.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
txt_db.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
txt_db.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
|
||||
txt_db.o: ../../include/openssl/stack.h ../../include/openssl/txt_db.h
|
||||
txt_db.o: ../cryptlib.h
|
||||
txt_db.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
txt_db.o: ../../include/openssl/txt_db.h ../cryptlib.h
|
||||
|
@ -49,7 +49,8 @@ all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB)
|
||||
@echo You may get an error following this line. Please ignore.
|
||||
- $(RANLIB) $(LIB)
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
@ -96,15 +97,17 @@ by_dir.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
|
||||
by_dir.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
|
||||
by_dir.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
by_dir.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
|
||||
by_dir.o: ../../include/openssl/md2.h ../../include/openssl/md5.h
|
||||
by_dir.o: ../../include/openssl/mdc2.h ../../include/openssl/objects.h
|
||||
by_dir.o: ../../include/openssl/md2.h ../../include/openssl/md4.h
|
||||
by_dir.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
|
||||
by_dir.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
by_dir.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
by_dir.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h
|
||||
by_dir.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h
|
||||
by_dir.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h
|
||||
by_dir.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
by_dir.o: ../../include/openssl/stack.h ../../include/openssl/x509.h
|
||||
by_dir.o: ../../include/openssl/x509_vfy.h ../cryptlib.h
|
||||
by_dir.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
by_dir.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
by_dir.o: ../cryptlib.h
|
||||
by_file.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
by_file.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h
|
||||
by_file.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h
|
||||
@ -113,52 +116,60 @@ by_file.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
|
||||
by_file.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
|
||||
by_file.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
by_file.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
|
||||
by_file.o: ../../include/openssl/md2.h ../../include/openssl/md5.h
|
||||
by_file.o: ../../include/openssl/mdc2.h ../../include/openssl/objects.h
|
||||
by_file.o: ../../include/openssl/md2.h ../../include/openssl/md4.h
|
||||
by_file.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
|
||||
by_file.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
by_file.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
by_file.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h
|
||||
by_file.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h
|
||||
by_file.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h
|
||||
by_file.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h
|
||||
by_file.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
by_file.o: ../../include/openssl/stack.h ../../include/openssl/x509.h
|
||||
by_file.o: ../../include/openssl/x509_vfy.h ../cryptlib.h
|
||||
by_file.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
by_file.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
by_file.o: ../cryptlib.h
|
||||
x509_att.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
x509_att.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h
|
||||
x509_att.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h
|
||||
x509_att.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
x509_att.o: ../../include/openssl/des.h ../../include/openssl/dh.h
|
||||
x509_att.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h
|
||||
x509_att.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
x509_att.o: ../../include/openssl/evp.h ../../include/openssl/idea.h
|
||||
x509_att.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h
|
||||
x509_att.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
|
||||
x509_att.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
x509_att.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
|
||||
x509_att.o: ../../include/openssl/md2.h ../../include/openssl/md4.h
|
||||
x509_att.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
|
||||
x509_att.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
x509_att.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
x509_att.o: ../../include/openssl/opensslconf.h
|
||||
x509_att.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h
|
||||
x509_att.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
|
||||
x509_att.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h
|
||||
x509_att.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
x509_att.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
x509_att.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
x509_att.o: ../../include/openssl/x509v3.h ../cryptlib.h
|
||||
x509_att.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
x509_att.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
|
||||
x509_att.o: ../cryptlib.h
|
||||
x509_cmp.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
x509_cmp.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h
|
||||
x509_cmp.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h
|
||||
x509_cmp.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
x509_cmp.o: ../../include/openssl/des.h ../../include/openssl/dh.h
|
||||
x509_cmp.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h
|
||||
x509_cmp.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
x509_cmp.o: ../../include/openssl/evp.h ../../include/openssl/idea.h
|
||||
x509_cmp.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h
|
||||
x509_cmp.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
|
||||
x509_cmp.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
x509_cmp.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
|
||||
x509_cmp.o: ../../include/openssl/md2.h ../../include/openssl/md4.h
|
||||
x509_cmp.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
|
||||
x509_cmp.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
x509_cmp.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
x509_cmp.o: ../../include/openssl/opensslconf.h
|
||||
x509_cmp.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h
|
||||
x509_cmp.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
|
||||
x509_cmp.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h
|
||||
x509_cmp.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
x509_cmp.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
x509_cmp.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
x509_cmp.o: ../../include/openssl/x509v3.h ../cryptlib.h
|
||||
x509_cmp.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
x509_cmp.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
|
||||
x509_cmp.o: ../cryptlib.h
|
||||
x509_d2.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
x509_d2.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h
|
||||
x509_d2.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h
|
||||
@ -166,14 +177,16 @@ x509_d2.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
|
||||
x509_d2.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
|
||||
x509_d2.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
|
||||
x509_d2.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
x509_d2.o: ../../include/openssl/idea.h ../../include/openssl/md2.h
|
||||
x509_d2.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
|
||||
x509_d2.o: ../../include/openssl/md2.h ../../include/openssl/md4.h
|
||||
x509_d2.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
|
||||
x509_d2.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
x509_d2.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h
|
||||
x509_d2.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
|
||||
x509_d2.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h
|
||||
x509_d2.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
x509_d2.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
x509_d2.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
x509_d2.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
x509_d2.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h
|
||||
x509_d2.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h
|
||||
x509_d2.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h
|
||||
x509_d2.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
x509_d2.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
x509_d2.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
x509_d2.o: ../cryptlib.h
|
||||
x509_def.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
@ -183,49 +196,57 @@ x509_def.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
|
||||
x509_def.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
|
||||
x509_def.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
|
||||
x509_def.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
x509_def.o: ../../include/openssl/idea.h ../../include/openssl/md2.h
|
||||
x509_def.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
|
||||
x509_def.o: ../../include/openssl/md2.h ../../include/openssl/md4.h
|
||||
x509_def.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
|
||||
x509_def.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
x509_def.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
x509_def.o: ../../include/openssl/opensslconf.h
|
||||
x509_def.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h
|
||||
x509_def.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
|
||||
x509_def.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h
|
||||
x509_def.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
x509_def.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
x509_def.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
x509_def.o: ../cryptlib.h
|
||||
x509_def.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
x509_def.o: ../../include/openssl/x509_vfy.h ../cryptlib.h
|
||||
x509_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
x509_err.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h
|
||||
x509_err.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h
|
||||
x509_err.o: ../../include/openssl/des.h ../../include/openssl/dh.h
|
||||
x509_err.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
|
||||
x509_err.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
x509_err.o: ../../include/openssl/idea.h ../../include/openssl/md2.h
|
||||
x509_err.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
|
||||
x509_err.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h
|
||||
x509_err.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
|
||||
x509_err.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
|
||||
x509_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
x509_err.o: ../../include/openssl/evp.h ../../include/openssl/idea.h
|
||||
x509_err.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h
|
||||
x509_err.o: ../../include/openssl/md4.h ../../include/openssl/md5.h
|
||||
x509_err.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h
|
||||
x509_err.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
x509_err.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h
|
||||
x509_err.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
|
||||
x509_err.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h
|
||||
x509_err.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
x509_err.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
x509_err.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
x509_err.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
x509_err.o: ../../include/openssl/x509_vfy.h
|
||||
x509_ext.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
x509_ext.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h
|
||||
x509_ext.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h
|
||||
x509_ext.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
x509_ext.o: ../../include/openssl/des.h ../../include/openssl/dh.h
|
||||
x509_ext.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h
|
||||
x509_ext.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
x509_ext.o: ../../include/openssl/evp.h ../../include/openssl/idea.h
|
||||
x509_ext.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h
|
||||
x509_ext.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
|
||||
x509_ext.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
x509_ext.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
|
||||
x509_ext.o: ../../include/openssl/md2.h ../../include/openssl/md4.h
|
||||
x509_ext.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
|
||||
x509_ext.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
x509_ext.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
x509_ext.o: ../../include/openssl/opensslconf.h
|
||||
x509_ext.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h
|
||||
x509_ext.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
|
||||
x509_ext.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h
|
||||
x509_ext.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
x509_ext.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
x509_ext.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
x509_ext.o: ../../include/openssl/x509v3.h ../cryptlib.h
|
||||
x509_ext.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
x509_ext.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
|
||||
x509_ext.o: ../cryptlib.h
|
||||
x509_lu.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
x509_lu.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h
|
||||
x509_lu.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h
|
||||
@ -234,15 +255,17 @@ x509_lu.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
|
||||
x509_lu.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
|
||||
x509_lu.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
x509_lu.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
|
||||
x509_lu.o: ../../include/openssl/md2.h ../../include/openssl/md5.h
|
||||
x509_lu.o: ../../include/openssl/mdc2.h ../../include/openssl/objects.h
|
||||
x509_lu.o: ../../include/openssl/md2.h ../../include/openssl/md4.h
|
||||
x509_lu.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
|
||||
x509_lu.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
x509_lu.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
x509_lu.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h
|
||||
x509_lu.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h
|
||||
x509_lu.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h
|
||||
x509_lu.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
x509_lu.o: ../../include/openssl/stack.h ../../include/openssl/x509.h
|
||||
x509_lu.o: ../../include/openssl/x509_vfy.h ../cryptlib.h
|
||||
x509_lu.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
x509_lu.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
x509_lu.o: ../cryptlib.h
|
||||
x509_obj.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
x509_obj.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h
|
||||
x509_obj.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h
|
||||
@ -251,16 +274,17 @@ x509_obj.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
|
||||
x509_obj.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
|
||||
x509_obj.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
x509_obj.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
|
||||
x509_obj.o: ../../include/openssl/md2.h ../../include/openssl/md5.h
|
||||
x509_obj.o: ../../include/openssl/mdc2.h ../../include/openssl/objects.h
|
||||
x509_obj.o: ../../include/openssl/md2.h ../../include/openssl/md4.h
|
||||
x509_obj.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
|
||||
x509_obj.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
x509_obj.o: ../../include/openssl/opensslconf.h
|
||||
x509_obj.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h
|
||||
x509_obj.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
|
||||
x509_obj.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h
|
||||
x509_obj.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
x509_obj.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
x509_obj.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
x509_obj.o: ../cryptlib.h
|
||||
x509_obj.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
x509_obj.o: ../../include/openssl/x509_vfy.h ../cryptlib.h
|
||||
x509_r2x.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
x509_r2x.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h
|
||||
x509_r2x.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h
|
||||
@ -268,16 +292,18 @@ x509_r2x.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
|
||||
x509_r2x.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
|
||||
x509_r2x.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
|
||||
x509_r2x.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
x509_r2x.o: ../../include/openssl/idea.h ../../include/openssl/md2.h
|
||||
x509_r2x.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
|
||||
x509_r2x.o: ../../include/openssl/md2.h ../../include/openssl/md4.h
|
||||
x509_r2x.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
|
||||
x509_r2x.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
x509_r2x.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
x509_r2x.o: ../../include/openssl/opensslconf.h
|
||||
x509_r2x.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h
|
||||
x509_r2x.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
|
||||
x509_r2x.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h
|
||||
x509_r2x.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
x509_r2x.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
x509_r2x.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
x509_r2x.o: ../cryptlib.h
|
||||
x509_r2x.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
x509_r2x.o: ../../include/openssl/x509_vfy.h ../cryptlib.h
|
||||
x509_req.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
x509_req.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h
|
||||
x509_req.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h
|
||||
@ -285,17 +311,19 @@ x509_req.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
|
||||
x509_req.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
|
||||
x509_req.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
|
||||
x509_req.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
x509_req.o: ../../include/openssl/idea.h ../../include/openssl/md2.h
|
||||
x509_req.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
|
||||
x509_req.o: ../../include/openssl/md2.h ../../include/openssl/md4.h
|
||||
x509_req.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
|
||||
x509_req.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
x509_req.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
x509_req.o: ../../include/openssl/opensslconf.h
|
||||
x509_req.o: ../../include/openssl/opensslv.h ../../include/openssl/pem.h
|
||||
x509_req.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h
|
||||
x509_req.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
|
||||
x509_req.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h
|
||||
x509_req.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
x509_req.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
x509_req.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
x509_req.o: ../cryptlib.h
|
||||
x509_req.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
x509_req.o: ../../include/openssl/x509_vfy.h ../cryptlib.h
|
||||
x509_set.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
x509_set.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h
|
||||
x509_set.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h
|
||||
@ -303,34 +331,39 @@ x509_set.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
|
||||
x509_set.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
|
||||
x509_set.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
|
||||
x509_set.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
x509_set.o: ../../include/openssl/idea.h ../../include/openssl/md2.h
|
||||
x509_set.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
|
||||
x509_set.o: ../../include/openssl/md2.h ../../include/openssl/md4.h
|
||||
x509_set.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
|
||||
x509_set.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
x509_set.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
x509_set.o: ../../include/openssl/opensslconf.h
|
||||
x509_set.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h
|
||||
x509_set.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
|
||||
x509_set.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h
|
||||
x509_set.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
x509_set.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
x509_set.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
x509_set.o: ../cryptlib.h
|
||||
x509_set.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
x509_set.o: ../../include/openssl/x509_vfy.h ../cryptlib.h
|
||||
x509_trs.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
x509_trs.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h
|
||||
x509_trs.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h
|
||||
x509_trs.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
x509_trs.o: ../../include/openssl/des.h ../../include/openssl/dh.h
|
||||
x509_trs.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h
|
||||
x509_trs.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
x509_trs.o: ../../include/openssl/evp.h ../../include/openssl/idea.h
|
||||
x509_trs.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h
|
||||
x509_trs.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
|
||||
x509_trs.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
x509_trs.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
|
||||
x509_trs.o: ../../include/openssl/md2.h ../../include/openssl/md4.h
|
||||
x509_trs.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
|
||||
x509_trs.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
x509_trs.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
x509_trs.o: ../../include/openssl/opensslconf.h
|
||||
x509_trs.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h
|
||||
x509_trs.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
|
||||
x509_trs.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h
|
||||
x509_trs.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
x509_trs.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
x509_trs.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
x509_trs.o: ../../include/openssl/x509v3.h ../cryptlib.h
|
||||
x509_trs.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
x509_trs.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
|
||||
x509_trs.o: ../cryptlib.h
|
||||
x509_txt.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
x509_txt.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h
|
||||
x509_txt.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h
|
||||
@ -339,32 +372,35 @@ x509_txt.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
|
||||
x509_txt.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
|
||||
x509_txt.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
x509_txt.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
|
||||
x509_txt.o: ../../include/openssl/md2.h ../../include/openssl/md5.h
|
||||
x509_txt.o: ../../include/openssl/mdc2.h ../../include/openssl/objects.h
|
||||
x509_txt.o: ../../include/openssl/md2.h ../../include/openssl/md4.h
|
||||
x509_txt.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
|
||||
x509_txt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
x509_txt.o: ../../include/openssl/opensslconf.h
|
||||
x509_txt.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h
|
||||
x509_txt.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
|
||||
x509_txt.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h
|
||||
x509_txt.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
x509_txt.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
x509_txt.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
x509_txt.o: ../cryptlib.h
|
||||
x509_txt.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
x509_txt.o: ../../include/openssl/x509_vfy.h ../cryptlib.h
|
||||
x509_v3.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
x509_v3.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h
|
||||
x509_v3.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h
|
||||
x509_v3.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
x509_v3.o: ../../include/openssl/des.h ../../include/openssl/dh.h
|
||||
x509_v3.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h
|
||||
x509_v3.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
x509_v3.o: ../../include/openssl/evp.h ../../include/openssl/idea.h
|
||||
x509_v3.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h
|
||||
x509_v3.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
|
||||
x509_v3.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
x509_v3.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
|
||||
x509_v3.o: ../../include/openssl/md2.h ../../include/openssl/md4.h
|
||||
x509_v3.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
|
||||
x509_v3.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
x509_v3.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h
|
||||
x509_v3.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
|
||||
x509_v3.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h
|
||||
x509_v3.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
x509_v3.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
x509_v3.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
x509_v3.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
x509_v3.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h
|
||||
x509_v3.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h
|
||||
x509_v3.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h
|
||||
x509_v3.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
x509_v3.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
x509_v3.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
x509_v3.o: ../../include/openssl/x509v3.h ../cryptlib.h
|
||||
x509_vfy.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
@ -373,18 +409,21 @@ x509_vfy.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h
|
||||
x509_vfy.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
x509_vfy.o: ../../include/openssl/des.h ../../include/openssl/dh.h
|
||||
x509_vfy.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h
|
||||
x509_vfy.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
x509_vfy.o: ../../include/openssl/evp.h ../../include/openssl/idea.h
|
||||
x509_vfy.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h
|
||||
x509_vfy.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
|
||||
x509_vfy.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
x509_vfy.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
|
||||
x509_vfy.o: ../../include/openssl/md2.h ../../include/openssl/md4.h
|
||||
x509_vfy.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
|
||||
x509_vfy.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
x509_vfy.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
x509_vfy.o: ../../include/openssl/opensslconf.h
|
||||
x509_vfy.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h
|
||||
x509_vfy.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
|
||||
x509_vfy.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h
|
||||
x509_vfy.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
x509_vfy.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
x509_vfy.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
x509_vfy.o: ../../include/openssl/x509v3.h ../cryptlib.h
|
||||
x509_vfy.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
x509_vfy.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
|
||||
x509_vfy.o: ../cryptlib.h
|
||||
x509name.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
x509name.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h
|
||||
x509name.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h
|
||||
@ -392,16 +431,18 @@ x509name.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
|
||||
x509name.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
|
||||
x509name.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
|
||||
x509name.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
x509name.o: ../../include/openssl/idea.h ../../include/openssl/md2.h
|
||||
x509name.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
|
||||
x509name.o: ../../include/openssl/md2.h ../../include/openssl/md4.h
|
||||
x509name.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
|
||||
x509name.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
x509name.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
x509name.o: ../../include/openssl/opensslconf.h
|
||||
x509name.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h
|
||||
x509name.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
|
||||
x509name.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h
|
||||
x509name.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
x509name.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
x509name.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
x509name.o: ../cryptlib.h
|
||||
x509name.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
x509name.o: ../../include/openssl/x509_vfy.h ../cryptlib.h
|
||||
x509rset.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
x509rset.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h
|
||||
x509rset.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h
|
||||
@ -409,16 +450,18 @@ x509rset.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
|
||||
x509rset.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
|
||||
x509rset.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
|
||||
x509rset.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
x509rset.o: ../../include/openssl/idea.h ../../include/openssl/md2.h
|
||||
x509rset.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
|
||||
x509rset.o: ../../include/openssl/md2.h ../../include/openssl/md4.h
|
||||
x509rset.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
|
||||
x509rset.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
x509rset.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
x509rset.o: ../../include/openssl/opensslconf.h
|
||||
x509rset.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h
|
||||
x509rset.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
|
||||
x509rset.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h
|
||||
x509rset.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
x509rset.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
x509rset.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
x509rset.o: ../cryptlib.h
|
||||
x509rset.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
x509rset.o: ../../include/openssl/x509_vfy.h ../cryptlib.h
|
||||
x509spki.o: ../../include/openssl/asn1.h ../../include/openssl/asn1_mac.h
|
||||
x509spki.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h
|
||||
x509spki.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
||||
@ -427,16 +470,17 @@ x509spki.o: ../../include/openssl/des.h ../../include/openssl/dh.h
|
||||
x509spki.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h
|
||||
x509spki.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
x509spki.o: ../../include/openssl/evp.h ../../include/openssl/idea.h
|
||||
x509spki.o: ../../include/openssl/md2.h ../../include/openssl/md5.h
|
||||
x509spki.o: ../../include/openssl/mdc2.h ../../include/openssl/objects.h
|
||||
x509spki.o: ../../include/openssl/opensslconf.h
|
||||
x509spki.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h
|
||||
x509spki.o: ../../include/openssl/md4.h ../../include/openssl/md5.h
|
||||
x509spki.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h
|
||||
x509spki.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
x509spki.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h
|
||||
x509spki.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
|
||||
x509spki.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h
|
||||
x509spki.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
x509spki.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
x509spki.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
x509spki.o: ../cryptlib.h
|
||||
x509spki.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
x509spki.o: ../../include/openssl/x509_vfy.h ../cryptlib.h
|
||||
x509type.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
x509type.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h
|
||||
x509type.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h
|
||||
@ -444,16 +488,18 @@ x509type.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
|
||||
x509type.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
|
||||
x509type.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
|
||||
x509type.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
x509type.o: ../../include/openssl/idea.h ../../include/openssl/md2.h
|
||||
x509type.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
|
||||
x509type.o: ../../include/openssl/md2.h ../../include/openssl/md4.h
|
||||
x509type.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
|
||||
x509type.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
x509type.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
x509type.o: ../../include/openssl/opensslconf.h
|
||||
x509type.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h
|
||||
x509type.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
|
||||
x509type.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h
|
||||
x509type.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
x509type.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
x509type.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
x509type.o: ../cryptlib.h
|
||||
x509type.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
x509type.o: ../../include/openssl/x509_vfy.h ../cryptlib.h
|
||||
x_all.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
x_all.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h
|
||||
x_all.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h
|
||||
@ -461,13 +507,15 @@ x_all.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
|
||||
x_all.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
|
||||
x_all.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
|
||||
x_all.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
x_all.o: ../../include/openssl/idea.h ../../include/openssl/md2.h
|
||||
x_all.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
|
||||
x_all.o: ../../include/openssl/md2.h ../../include/openssl/md4.h
|
||||
x_all.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
|
||||
x_all.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
x_all.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h
|
||||
x_all.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
|
||||
x_all.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h
|
||||
x_all.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
x_all.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
x_all.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
x_all.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
x_all.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h
|
||||
x_all.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h
|
||||
x_all.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h
|
||||
x_all.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
x_all.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
x_all.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
x_all.o: ../cryptlib.h
|
||||
|
@ -214,6 +214,8 @@ int i;
|
||||
}
|
||||
else
|
||||
p=buf;
|
||||
if (i == 0)
|
||||
*p = '\0';
|
||||
return(p);
|
||||
err:
|
||||
X509err(X509_F_X509_NAME_ONELINE,ERR_R_MALLOC_FAILURE);
|
||||
|
@ -228,7 +228,8 @@ int X509_TRUST_get_trust(X509_TRUST *xp)
|
||||
|
||||
static int trust_1oidany(X509_TRUST *trust, X509 *x, int flags)
|
||||
{
|
||||
if(x->aux) return obj_trust(trust->arg1, x, flags);
|
||||
if(x->aux && (x->aux->trust || x->aux->reject))
|
||||
return obj_trust(trust->arg1, x, flags);
|
||||
/* we don't have any trust settings: for compatibility
|
||||
* we return trusted if it is self signed
|
||||
*/
|
||||
|
@ -43,7 +43,8 @@ all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB)
|
||||
@echo You may get an error following this line. Please ignore.
|
||||
- $(RANLIB) $(LIB)
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
@ -88,17 +89,19 @@ v3_akey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
||||
v3_akey.o: ../../include/openssl/cast.h ../../include/openssl/conf.h
|
||||
v3_akey.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
|
||||
v3_akey.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
|
||||
v3_akey.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
|
||||
v3_akey.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
v3_akey.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
|
||||
v3_akey.o: ../../include/openssl/md2.h ../../include/openssl/md5.h
|
||||
v3_akey.o: ../../include/openssl/mdc2.h ../../include/openssl/objects.h
|
||||
v3_akey.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
v3_akey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h
|
||||
v3_akey.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h
|
||||
v3_akey.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h
|
||||
v3_akey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
v3_akey.o: ../../include/openssl/stack.h ../../include/openssl/x509.h
|
||||
v3_akey.o: ../../include/openssl/e_os.h ../../include/openssl/e_os.h
|
||||
v3_akey.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
v3_akey.o: ../../include/openssl/evp.h ../../include/openssl/idea.h
|
||||
v3_akey.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h
|
||||
v3_akey.o: ../../include/openssl/md4.h ../../include/openssl/md5.h
|
||||
v3_akey.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h
|
||||
v3_akey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
v3_akey.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h
|
||||
v3_akey.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
|
||||
v3_akey.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h
|
||||
v3_akey.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
v3_akey.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
v3_akey.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
v3_akey.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
|
||||
v3_akey.o: ../cryptlib.h
|
||||
v3_alt.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
@ -107,16 +110,18 @@ v3_alt.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h
|
||||
v3_alt.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
v3_alt.o: ../../include/openssl/des.h ../../include/openssl/dh.h
|
||||
v3_alt.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h
|
||||
v3_alt.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
v3_alt.o: ../../include/openssl/evp.h ../../include/openssl/idea.h
|
||||
v3_alt.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h
|
||||
v3_alt.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
|
||||
v3_alt.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
v3_alt.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
|
||||
v3_alt.o: ../../include/openssl/md2.h ../../include/openssl/md4.h
|
||||
v3_alt.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
|
||||
v3_alt.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
v3_alt.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h
|
||||
v3_alt.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
|
||||
v3_alt.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h
|
||||
v3_alt.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
v3_alt.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
v3_alt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
v3_alt.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
v3_alt.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h
|
||||
v3_alt.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h
|
||||
v3_alt.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h
|
||||
v3_alt.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
v3_alt.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
v3_alt.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
v3_alt.o: ../../include/openssl/x509v3.h ../cryptlib.h
|
||||
v3_bcons.o: ../../include/openssl/asn1.h ../../include/openssl/asn1_mac.h
|
||||
@ -125,53 +130,60 @@ v3_bcons.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
||||
v3_bcons.o: ../../include/openssl/cast.h ../../include/openssl/conf.h
|
||||
v3_bcons.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
|
||||
v3_bcons.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
|
||||
v3_bcons.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
|
||||
v3_bcons.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
v3_bcons.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
|
||||
v3_bcons.o: ../../include/openssl/md2.h ../../include/openssl/md5.h
|
||||
v3_bcons.o: ../../include/openssl/mdc2.h ../../include/openssl/objects.h
|
||||
v3_bcons.o: ../../include/openssl/opensslconf.h
|
||||
v3_bcons.o: ../../include/openssl/e_os.h ../../include/openssl/e_os.h
|
||||
v3_bcons.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
v3_bcons.o: ../../include/openssl/evp.h ../../include/openssl/idea.h
|
||||
v3_bcons.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h
|
||||
v3_bcons.o: ../../include/openssl/md4.h ../../include/openssl/md5.h
|
||||
v3_bcons.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h
|
||||
v3_bcons.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
v3_bcons.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h
|
||||
v3_bcons.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
|
||||
v3_bcons.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h
|
||||
v3_bcons.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
v3_bcons.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
v3_bcons.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
v3_bcons.o: ../../include/openssl/x509v3.h ../cryptlib.h
|
||||
v3_bcons.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
v3_bcons.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
|
||||
v3_bcons.o: ../cryptlib.h
|
||||
v3_bitst.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
v3_bitst.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h
|
||||
v3_bitst.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h
|
||||
v3_bitst.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
v3_bitst.o: ../../include/openssl/des.h ../../include/openssl/dh.h
|
||||
v3_bitst.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h
|
||||
v3_bitst.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
v3_bitst.o: ../../include/openssl/evp.h ../../include/openssl/idea.h
|
||||
v3_bitst.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h
|
||||
v3_bitst.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
|
||||
v3_bitst.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
v3_bitst.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
|
||||
v3_bitst.o: ../../include/openssl/md2.h ../../include/openssl/md4.h
|
||||
v3_bitst.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
|
||||
v3_bitst.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
v3_bitst.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
v3_bitst.o: ../../include/openssl/opensslconf.h
|
||||
v3_bitst.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h
|
||||
v3_bitst.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
|
||||
v3_bitst.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h
|
||||
v3_bitst.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
v3_bitst.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
v3_bitst.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
v3_bitst.o: ../../include/openssl/x509v3.h ../cryptlib.h
|
||||
v3_bitst.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
v3_bitst.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
|
||||
v3_bitst.o: ../cryptlib.h
|
||||
v3_conf.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
v3_conf.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h
|
||||
v3_conf.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h
|
||||
v3_conf.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
v3_conf.o: ../../include/openssl/des.h ../../include/openssl/dh.h
|
||||
v3_conf.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h
|
||||
v3_conf.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
v3_conf.o: ../../include/openssl/evp.h ../../include/openssl/idea.h
|
||||
v3_conf.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h
|
||||
v3_conf.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
|
||||
v3_conf.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
v3_conf.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
|
||||
v3_conf.o: ../../include/openssl/md2.h ../../include/openssl/md4.h
|
||||
v3_conf.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
|
||||
v3_conf.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
v3_conf.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h
|
||||
v3_conf.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
|
||||
v3_conf.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h
|
||||
v3_conf.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
v3_conf.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
v3_conf.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
v3_conf.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
v3_conf.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h
|
||||
v3_conf.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h
|
||||
v3_conf.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h
|
||||
v3_conf.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
v3_conf.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
v3_conf.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
v3_conf.o: ../../include/openssl/x509v3.h ../cryptlib.h
|
||||
v3_cpols.o: ../../include/openssl/asn1.h ../../include/openssl/asn1_mac.h
|
||||
@ -180,36 +192,40 @@ v3_cpols.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
||||
v3_cpols.o: ../../include/openssl/cast.h ../../include/openssl/conf.h
|
||||
v3_cpols.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
|
||||
v3_cpols.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
|
||||
v3_cpols.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
|
||||
v3_cpols.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
v3_cpols.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
|
||||
v3_cpols.o: ../../include/openssl/md2.h ../../include/openssl/md5.h
|
||||
v3_cpols.o: ../../include/openssl/mdc2.h ../../include/openssl/objects.h
|
||||
v3_cpols.o: ../../include/openssl/opensslconf.h
|
||||
v3_cpols.o: ../../include/openssl/e_os.h ../../include/openssl/e_os.h
|
||||
v3_cpols.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
v3_cpols.o: ../../include/openssl/evp.h ../../include/openssl/idea.h
|
||||
v3_cpols.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h
|
||||
v3_cpols.o: ../../include/openssl/md4.h ../../include/openssl/md5.h
|
||||
v3_cpols.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h
|
||||
v3_cpols.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
v3_cpols.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h
|
||||
v3_cpols.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
|
||||
v3_cpols.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h
|
||||
v3_cpols.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
v3_cpols.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
v3_cpols.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
v3_cpols.o: ../../include/openssl/x509v3.h ../cryptlib.h
|
||||
v3_cpols.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
v3_cpols.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
|
||||
v3_cpols.o: ../cryptlib.h
|
||||
v3_crld.o: ../../include/openssl/asn1.h ../../include/openssl/asn1_mac.h
|
||||
v3_crld.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h
|
||||
v3_crld.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
||||
v3_crld.o: ../../include/openssl/cast.h ../../include/openssl/conf.h
|
||||
v3_crld.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
|
||||
v3_crld.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
|
||||
v3_crld.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
|
||||
v3_crld.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
v3_crld.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
|
||||
v3_crld.o: ../../include/openssl/md2.h ../../include/openssl/md5.h
|
||||
v3_crld.o: ../../include/openssl/mdc2.h ../../include/openssl/objects.h
|
||||
v3_crld.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
v3_crld.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h
|
||||
v3_crld.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h
|
||||
v3_crld.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h
|
||||
v3_crld.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
v3_crld.o: ../../include/openssl/stack.h ../../include/openssl/x509.h
|
||||
v3_crld.o: ../../include/openssl/e_os.h ../../include/openssl/e_os.h
|
||||
v3_crld.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
v3_crld.o: ../../include/openssl/evp.h ../../include/openssl/idea.h
|
||||
v3_crld.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h
|
||||
v3_crld.o: ../../include/openssl/md4.h ../../include/openssl/md5.h
|
||||
v3_crld.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h
|
||||
v3_crld.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
v3_crld.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h
|
||||
v3_crld.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
|
||||
v3_crld.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h
|
||||
v3_crld.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
v3_crld.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
v3_crld.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
v3_crld.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
|
||||
v3_crld.o: ../cryptlib.h
|
||||
v3_enum.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
@ -218,16 +234,18 @@ v3_enum.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h
|
||||
v3_enum.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
v3_enum.o: ../../include/openssl/des.h ../../include/openssl/dh.h
|
||||
v3_enum.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h
|
||||
v3_enum.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
v3_enum.o: ../../include/openssl/evp.h ../../include/openssl/idea.h
|
||||
v3_enum.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h
|
||||
v3_enum.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
|
||||
v3_enum.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
v3_enum.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
|
||||
v3_enum.o: ../../include/openssl/md2.h ../../include/openssl/md4.h
|
||||
v3_enum.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
|
||||
v3_enum.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
v3_enum.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h
|
||||
v3_enum.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
|
||||
v3_enum.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h
|
||||
v3_enum.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
v3_enum.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
v3_enum.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
v3_enum.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
v3_enum.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h
|
||||
v3_enum.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h
|
||||
v3_enum.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h
|
||||
v3_enum.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
v3_enum.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
v3_enum.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
v3_enum.o: ../../include/openssl/x509v3.h ../cryptlib.h
|
||||
v3_extku.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
@ -236,35 +254,40 @@ v3_extku.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h
|
||||
v3_extku.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
v3_extku.o: ../../include/openssl/des.h ../../include/openssl/dh.h
|
||||
v3_extku.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h
|
||||
v3_extku.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
v3_extku.o: ../../include/openssl/evp.h ../../include/openssl/idea.h
|
||||
v3_extku.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h
|
||||
v3_extku.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
|
||||
v3_extku.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
v3_extku.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
|
||||
v3_extku.o: ../../include/openssl/md2.h ../../include/openssl/md4.h
|
||||
v3_extku.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
|
||||
v3_extku.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
v3_extku.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
v3_extku.o: ../../include/openssl/opensslconf.h
|
||||
v3_extku.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h
|
||||
v3_extku.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
|
||||
v3_extku.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h
|
||||
v3_extku.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
v3_extku.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
v3_extku.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
v3_extku.o: ../../include/openssl/x509v3.h ../cryptlib.h
|
||||
v3_extku.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
v3_extku.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
|
||||
v3_extku.o: ../cryptlib.h
|
||||
v3_genn.o: ../../include/openssl/asn1.h ../../include/openssl/asn1_mac.h
|
||||
v3_genn.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h
|
||||
v3_genn.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
||||
v3_genn.o: ../../include/openssl/cast.h ../../include/openssl/conf.h
|
||||
v3_genn.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
|
||||
v3_genn.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
|
||||
v3_genn.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
|
||||
v3_genn.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
v3_genn.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
|
||||
v3_genn.o: ../../include/openssl/md2.h ../../include/openssl/md5.h
|
||||
v3_genn.o: ../../include/openssl/mdc2.h ../../include/openssl/objects.h
|
||||
v3_genn.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
v3_genn.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h
|
||||
v3_genn.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h
|
||||
v3_genn.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h
|
||||
v3_genn.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
v3_genn.o: ../../include/openssl/stack.h ../../include/openssl/x509.h
|
||||
v3_genn.o: ../../include/openssl/e_os.h ../../include/openssl/e_os.h
|
||||
v3_genn.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
v3_genn.o: ../../include/openssl/evp.h ../../include/openssl/idea.h
|
||||
v3_genn.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h
|
||||
v3_genn.o: ../../include/openssl/md4.h ../../include/openssl/md5.h
|
||||
v3_genn.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h
|
||||
v3_genn.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
v3_genn.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h
|
||||
v3_genn.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
|
||||
v3_genn.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h
|
||||
v3_genn.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
v3_genn.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
v3_genn.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
v3_genn.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
|
||||
v3_genn.o: ../cryptlib.h
|
||||
v3_ia5.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
@ -273,16 +296,18 @@ v3_ia5.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h
|
||||
v3_ia5.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
v3_ia5.o: ../../include/openssl/des.h ../../include/openssl/dh.h
|
||||
v3_ia5.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h
|
||||
v3_ia5.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
v3_ia5.o: ../../include/openssl/evp.h ../../include/openssl/idea.h
|
||||
v3_ia5.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h
|
||||
v3_ia5.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
|
||||
v3_ia5.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
v3_ia5.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
|
||||
v3_ia5.o: ../../include/openssl/md2.h ../../include/openssl/md4.h
|
||||
v3_ia5.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
|
||||
v3_ia5.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
v3_ia5.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h
|
||||
v3_ia5.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
|
||||
v3_ia5.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h
|
||||
v3_ia5.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
v3_ia5.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
v3_ia5.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
v3_ia5.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
v3_ia5.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h
|
||||
v3_ia5.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h
|
||||
v3_ia5.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h
|
||||
v3_ia5.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
v3_ia5.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
v3_ia5.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
v3_ia5.o: ../../include/openssl/x509v3.h ../cryptlib.h
|
||||
v3_info.o: ../../include/openssl/asn1.h ../../include/openssl/asn1_mac.h
|
||||
@ -291,17 +316,19 @@ v3_info.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
||||
v3_info.o: ../../include/openssl/cast.h ../../include/openssl/conf.h
|
||||
v3_info.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
|
||||
v3_info.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
|
||||
v3_info.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
|
||||
v3_info.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
v3_info.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
|
||||
v3_info.o: ../../include/openssl/md2.h ../../include/openssl/md5.h
|
||||
v3_info.o: ../../include/openssl/mdc2.h ../../include/openssl/objects.h
|
||||
v3_info.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
v3_info.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h
|
||||
v3_info.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h
|
||||
v3_info.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h
|
||||
v3_info.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
v3_info.o: ../../include/openssl/stack.h ../../include/openssl/x509.h
|
||||
v3_info.o: ../../include/openssl/e_os.h ../../include/openssl/e_os.h
|
||||
v3_info.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
v3_info.o: ../../include/openssl/evp.h ../../include/openssl/idea.h
|
||||
v3_info.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h
|
||||
v3_info.o: ../../include/openssl/md4.h ../../include/openssl/md5.h
|
||||
v3_info.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h
|
||||
v3_info.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
v3_info.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h
|
||||
v3_info.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
|
||||
v3_info.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h
|
||||
v3_info.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
v3_info.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
v3_info.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
v3_info.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
|
||||
v3_info.o: ../cryptlib.h
|
||||
v3_int.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
@ -310,16 +337,18 @@ v3_int.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h
|
||||
v3_int.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
v3_int.o: ../../include/openssl/des.h ../../include/openssl/dh.h
|
||||
v3_int.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h
|
||||
v3_int.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
v3_int.o: ../../include/openssl/evp.h ../../include/openssl/idea.h
|
||||
v3_int.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h
|
||||
v3_int.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
|
||||
v3_int.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
v3_int.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
|
||||
v3_int.o: ../../include/openssl/md2.h ../../include/openssl/md4.h
|
||||
v3_int.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
|
||||
v3_int.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
v3_int.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h
|
||||
v3_int.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
|
||||
v3_int.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h
|
||||
v3_int.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
v3_int.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
v3_int.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
v3_int.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
v3_int.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h
|
||||
v3_int.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h
|
||||
v3_int.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h
|
||||
v3_int.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
v3_int.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
v3_int.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
v3_int.o: ../../include/openssl/x509v3.h ../cryptlib.h
|
||||
v3_lib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
@ -328,16 +357,18 @@ v3_lib.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h
|
||||
v3_lib.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
v3_lib.o: ../../include/openssl/des.h ../../include/openssl/dh.h
|
||||
v3_lib.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h
|
||||
v3_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
v3_lib.o: ../../include/openssl/evp.h ../../include/openssl/idea.h
|
||||
v3_lib.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h
|
||||
v3_lib.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
|
||||
v3_lib.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
v3_lib.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
|
||||
v3_lib.o: ../../include/openssl/md2.h ../../include/openssl/md4.h
|
||||
v3_lib.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
|
||||
v3_lib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
v3_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h
|
||||
v3_lib.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
|
||||
v3_lib.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h
|
||||
v3_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
v3_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
v3_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
v3_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
v3_lib.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h
|
||||
v3_lib.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h
|
||||
v3_lib.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h
|
||||
v3_lib.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
v3_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
v3_lib.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
v3_lib.o: ../../include/openssl/x509v3.h ../cryptlib.h ext_dat.h
|
||||
v3_pku.o: ../../include/openssl/asn1.h ../../include/openssl/asn1_mac.h
|
||||
@ -346,17 +377,19 @@ v3_pku.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
||||
v3_pku.o: ../../include/openssl/cast.h ../../include/openssl/conf.h
|
||||
v3_pku.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
|
||||
v3_pku.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
|
||||
v3_pku.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
|
||||
v3_pku.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
v3_pku.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
|
||||
v3_pku.o: ../../include/openssl/md2.h ../../include/openssl/md5.h
|
||||
v3_pku.o: ../../include/openssl/mdc2.h ../../include/openssl/objects.h
|
||||
v3_pku.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
v3_pku.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h
|
||||
v3_pku.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h
|
||||
v3_pku.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h
|
||||
v3_pku.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
v3_pku.o: ../../include/openssl/stack.h ../../include/openssl/x509.h
|
||||
v3_pku.o: ../../include/openssl/e_os.h ../../include/openssl/e_os.h
|
||||
v3_pku.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
v3_pku.o: ../../include/openssl/evp.h ../../include/openssl/idea.h
|
||||
v3_pku.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h
|
||||
v3_pku.o: ../../include/openssl/md4.h ../../include/openssl/md5.h
|
||||
v3_pku.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h
|
||||
v3_pku.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
v3_pku.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h
|
||||
v3_pku.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
|
||||
v3_pku.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h
|
||||
v3_pku.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
v3_pku.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
v3_pku.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
v3_pku.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
|
||||
v3_pku.o: ../cryptlib.h
|
||||
v3_prn.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
@ -365,16 +398,18 @@ v3_prn.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h
|
||||
v3_prn.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
v3_prn.o: ../../include/openssl/des.h ../../include/openssl/dh.h
|
||||
v3_prn.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h
|
||||
v3_prn.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
v3_prn.o: ../../include/openssl/evp.h ../../include/openssl/idea.h
|
||||
v3_prn.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h
|
||||
v3_prn.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
|
||||
v3_prn.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
v3_prn.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
|
||||
v3_prn.o: ../../include/openssl/md2.h ../../include/openssl/md4.h
|
||||
v3_prn.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
|
||||
v3_prn.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
v3_prn.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h
|
||||
v3_prn.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
|
||||
v3_prn.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h
|
||||
v3_prn.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
v3_prn.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
v3_prn.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
v3_prn.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
v3_prn.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h
|
||||
v3_prn.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h
|
||||
v3_prn.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h
|
||||
v3_prn.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
v3_prn.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
v3_prn.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
v3_prn.o: ../../include/openssl/x509v3.h ../cryptlib.h
|
||||
v3_purp.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
@ -383,16 +418,18 @@ v3_purp.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h
|
||||
v3_purp.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
v3_purp.o: ../../include/openssl/des.h ../../include/openssl/dh.h
|
||||
v3_purp.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h
|
||||
v3_purp.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
v3_purp.o: ../../include/openssl/evp.h ../../include/openssl/idea.h
|
||||
v3_purp.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h
|
||||
v3_purp.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
|
||||
v3_purp.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
v3_purp.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
|
||||
v3_purp.o: ../../include/openssl/md2.h ../../include/openssl/md4.h
|
||||
v3_purp.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
|
||||
v3_purp.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
v3_purp.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h
|
||||
v3_purp.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
|
||||
v3_purp.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h
|
||||
v3_purp.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
v3_purp.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
v3_purp.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
v3_purp.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
v3_purp.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h
|
||||
v3_purp.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h
|
||||
v3_purp.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h
|
||||
v3_purp.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
v3_purp.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
v3_purp.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
v3_purp.o: ../../include/openssl/x509v3.h ../cryptlib.h
|
||||
v3_skey.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
@ -401,16 +438,18 @@ v3_skey.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h
|
||||
v3_skey.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
v3_skey.o: ../../include/openssl/des.h ../../include/openssl/dh.h
|
||||
v3_skey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h
|
||||
v3_skey.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
v3_skey.o: ../../include/openssl/evp.h ../../include/openssl/idea.h
|
||||
v3_skey.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h
|
||||
v3_skey.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
|
||||
v3_skey.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
v3_skey.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
|
||||
v3_skey.o: ../../include/openssl/md2.h ../../include/openssl/md4.h
|
||||
v3_skey.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
|
||||
v3_skey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
v3_skey.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h
|
||||
v3_skey.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
|
||||
v3_skey.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h
|
||||
v3_skey.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
v3_skey.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
v3_skey.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
v3_skey.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
v3_skey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h
|
||||
v3_skey.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h
|
||||
v3_skey.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h
|
||||
v3_skey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
v3_skey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
v3_skey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
v3_skey.o: ../../include/openssl/x509v3.h ../cryptlib.h
|
||||
v3_sxnet.o: ../../include/openssl/asn1.h ../../include/openssl/asn1_mac.h
|
||||
@ -419,51 +458,57 @@ v3_sxnet.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
||||
v3_sxnet.o: ../../include/openssl/cast.h ../../include/openssl/conf.h
|
||||
v3_sxnet.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
|
||||
v3_sxnet.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
|
||||
v3_sxnet.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
|
||||
v3_sxnet.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
v3_sxnet.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
|
||||
v3_sxnet.o: ../../include/openssl/md2.h ../../include/openssl/md5.h
|
||||
v3_sxnet.o: ../../include/openssl/mdc2.h ../../include/openssl/objects.h
|
||||
v3_sxnet.o: ../../include/openssl/opensslconf.h
|
||||
v3_sxnet.o: ../../include/openssl/e_os.h ../../include/openssl/e_os.h
|
||||
v3_sxnet.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
v3_sxnet.o: ../../include/openssl/evp.h ../../include/openssl/idea.h
|
||||
v3_sxnet.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h
|
||||
v3_sxnet.o: ../../include/openssl/md4.h ../../include/openssl/md5.h
|
||||
v3_sxnet.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h
|
||||
v3_sxnet.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
v3_sxnet.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h
|
||||
v3_sxnet.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
|
||||
v3_sxnet.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h
|
||||
v3_sxnet.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
v3_sxnet.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
v3_sxnet.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
v3_sxnet.o: ../../include/openssl/x509v3.h ../cryptlib.h
|
||||
v3_sxnet.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
v3_sxnet.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
|
||||
v3_sxnet.o: ../cryptlib.h
|
||||
v3_utl.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
v3_utl.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h
|
||||
v3_utl.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h
|
||||
v3_utl.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
v3_utl.o: ../../include/openssl/des.h ../../include/openssl/dh.h
|
||||
v3_utl.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h
|
||||
v3_utl.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
v3_utl.o: ../../include/openssl/evp.h ../../include/openssl/idea.h
|
||||
v3_utl.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h
|
||||
v3_utl.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
|
||||
v3_utl.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
v3_utl.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
|
||||
v3_utl.o: ../../include/openssl/md2.h ../../include/openssl/md4.h
|
||||
v3_utl.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
|
||||
v3_utl.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
v3_utl.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h
|
||||
v3_utl.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
|
||||
v3_utl.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h
|
||||
v3_utl.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
v3_utl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
v3_utl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
v3_utl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
v3_utl.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h
|
||||
v3_utl.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h
|
||||
v3_utl.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h
|
||||
v3_utl.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
v3_utl.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
v3_utl.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
v3_utl.o: ../../include/openssl/x509v3.h ../cryptlib.h
|
||||
v3err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
v3err.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h
|
||||
v3err.o: ../../include/openssl/cast.h ../../include/openssl/conf.h
|
||||
v3err.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
|
||||
v3err.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
|
||||
v3err.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h
|
||||
v3err.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
v3err.o: ../../include/openssl/des.h ../../include/openssl/dh.h
|
||||
v3err.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h
|
||||
v3err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
v3err.o: ../../include/openssl/evp.h ../../include/openssl/idea.h
|
||||
v3err.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h
|
||||
v3err.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
|
||||
v3err.o: ../../include/openssl/md4.h ../../include/openssl/md5.h
|
||||
v3err.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h
|
||||
v3err.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
v3err.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h
|
||||
v3err.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
|
||||
v3err.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h
|
||||
v3err.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
v3err.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
v3err.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
v3err.o: ../../include/openssl/x509v3.h
|
||||
v3err.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
v3err.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
|
||||
|
@ -96,12 +96,18 @@ of hex digits.
|
||||
=item B<-K key>
|
||||
|
||||
the actual key to use: this must be represented as a string comprised only
|
||||
of hex digits.
|
||||
of hex digits. If only the key is specified, the IV must additionally specified
|
||||
using the B<-iv> option. When both a key and a password are specified, the
|
||||
key given with the B<-K> option will be used and the IV generated from the
|
||||
password will be taken. It probably does not make much sense to specify
|
||||
both key and password.
|
||||
|
||||
=item B<-iv IV>
|
||||
|
||||
the actual IV to use: this must be represented as a string comprised only
|
||||
of hex digits.
|
||||
of hex digits. When only the key is specified using the B<-K> option, the
|
||||
IV must explicitly be defined. When a password is being specified using
|
||||
one of the other options, the IV is generated from this password.
|
||||
|
||||
=item B<-p>
|
||||
|
||||
|
@ -101,11 +101,11 @@ Sign some data using a private key:
|
||||
|
||||
Recover the signed data
|
||||
|
||||
openssl rsautl -sign -in sig -inkey key.pem
|
||||
openssl rsautl -verify -in sig -inkey key.pem
|
||||
|
||||
Examine the raw signed data:
|
||||
|
||||
openssl rsautl -sign -in file -inkey key.pem -raw -hexdump
|
||||
openssl rsautl -verify -in file -inkey key.pem -raw -hexdump
|
||||
|
||||
0000 - 00 01 ff ff ff ff ff ff-ff ff ff ff ff ff ff ff ................
|
||||
0010 - ff ff ff ff ff ff ff ff-ff ff ff ff ff ff ff ff ................
|
||||
|
@ -7,7 +7,7 @@ s_server - SSL/TLS server program
|
||||
|
||||
=head1 SYNOPSIS
|
||||
|
||||
B<openssl> B<s_client>
|
||||
B<openssl> B<s_server>
|
||||
[B<-accept port>]
|
||||
[B<-context id>]
|
||||
[B<-verify depth>]
|
||||
|
@ -40,7 +40,7 @@ BIO).
|
||||
=head1 SEE ALSO
|
||||
|
||||
L<BIO_ctrl(3)|BIO_ctrl(3)>,
|
||||
L<BIO_f_base64(3)|BIO_f_base64(3)>,
|
||||
L<BIO_f_base64(3)|BIO_f_base64(3)>, L<BIO_f_buffer(3)|BIO_f_buffer(3)>,
|
||||
L<BIO_f_cipher(3)|BIO_f_cipher(3)>, L<BIO_f_md(3)|BIO_f_md(3)>,
|
||||
L<BIO_f_null(3)|BIO_f_null(3)>, L<BIO_f_ssl(3)|BIO_f_ssl(3)>,
|
||||
L<BIO_find_type(3)|BIO_find_type(3)>, L<BIO_new(3)|BIO_new(3)>,
|
||||
|
@ -127,13 +127,12 @@ function and xor).
|
||||
When bytes are extracted from the RNG, the following process is used.
|
||||
For each group of 10 bytes (or less), we do the following:
|
||||
|
||||
Input into the hash function the top 10 bytes from the local 'md'
|
||||
(which is initialized from the global 'md' before any bytes are
|
||||
generated), the bytes that are to be overwritten by the random bytes,
|
||||
and bytes from the 'state' (incrementing looping index). From this
|
||||
digest output (which is kept in 'md'), the top (up to) 10 bytes are
|
||||
returned to the caller and the bottom (up to) 10 bytes are xored into
|
||||
the 'state'.
|
||||
Input into the hash function the local 'md' (which is initialized from
|
||||
the global 'md' before any bytes are generated), the bytes that are to
|
||||
be overwritten by the random bytes, and bytes from the 'state'
|
||||
(incrementing looping index). From this digest output (which is kept
|
||||
in 'md'), the top (up to) 10 bytes are returned to the caller and the
|
||||
bottom 10 bytes are xored into the 'state'.
|
||||
|
||||
Finally, after we have finished 'num' random bytes for the caller,
|
||||
'count' (which is incremented) and the local and global 'md' are fed
|
||||
|
@ -40,7 +40,7 @@ SSL_CTX_get_ex_data() is used to retrieve the information for B<idx> from
|
||||
B<ctx>.
|
||||
|
||||
A detailed description for the B<*_get_ex_new_index()> functionality
|
||||
can be found in L<RSA_get_ex_new_index.pod(3)|RSA_get_ex_new_index.pod(3)>.
|
||||
can be found in L<RSA_get_ex_new_index(3)|RSA_get_ex_new_index(3)>.
|
||||
The B<*_get_ex_data()> and B<*_set_ex_data()> functionality is described in
|
||||
L<CRYPTO_set_ex_data(3)|CRYPTO_set_ex_data(3)>.
|
||||
|
||||
|
@ -33,10 +33,6 @@ which can be used e.g. for descriptions of the certificates.
|
||||
The B<CAfile> is processed on execution of the SSL_CTX_load_verify_locations()
|
||||
function.
|
||||
|
||||
If on an TLS/SSL server no special setting is performed using *client_CA_list()
|
||||
functions, the certificates contained in B<CAfile> are listed to the client
|
||||
as available CAs during the TLS/SSL handshake.
|
||||
|
||||
If B<CApath> is not NULL, it points to a directory containing CA certificates
|
||||
in PEM format. The files each contain one CA certificate. The files are
|
||||
looked up by the CA subject name hash value, which must hence be available.
|
||||
@ -50,9 +46,6 @@ The certificates in B<CApath> are only looked up when required, e.g. when
|
||||
building the certificate chain or when actually performing the verification
|
||||
of a peer certificate.
|
||||
|
||||
On a server, the certificates in B<CApath> are not listed as available
|
||||
CA certificates to a client during a TLS/SSL handshake.
|
||||
|
||||
When looking up CA certificates, the OpenSSL library will first search the
|
||||
certificates in B<CAfile>, then those in B<CApath>. Certificate matching
|
||||
is done based on the subject name, the key identifier (if present), and the
|
||||
@ -62,6 +55,13 @@ matching the parameters is found, the verification process will be performed;
|
||||
no other certificates for the same parameters will be searched in case of
|
||||
failure.
|
||||
|
||||
In server mode, when requesting a client certificate, the server must send
|
||||
the list of CAs of which it will accept client certificates. This list
|
||||
is not influenced by the contents of B<CAfile> or B<CApath> and must
|
||||
explicitely be set using the
|
||||
L<SSL_CTX_set_client_CA_list(3)|SSL_CTX_set_client_CA_list(3)>
|
||||
family of functions.
|
||||
|
||||
When building its own certificate chain, an OpenSSL client/server will
|
||||
try to fill in missing certificates from B<CAfile>/B<CApath>, if the
|
||||
certificate chain was not explicitly specified (see
|
||||
|
@ -36,25 +36,23 @@ the chosen B<ssl>, overriding the setting valid for B<ssl>'s SSL_CTX object.
|
||||
|
||||
When a TLS/SSL server requests a client certificate (see
|
||||
B<SSL_CTX_set_verify_options()>), it sends a list of CAs, for which
|
||||
it will accept certificates, to the client. If no special list is provided,
|
||||
the CAs available using the B<CAfile> option in
|
||||
L<SSL_CTX_load_verify_locations(3)|SSL_CTX_load_verify_locations(3)>
|
||||
are sent.
|
||||
it will accept certificates, to the client.
|
||||
|
||||
This list can be explicitly set using the SSL_CTX_set_client_CA_list() for
|
||||
This list must explicitly be set using SSL_CTX_set_client_CA_list() for
|
||||
B<ctx> and SSL_set_client_CA_list() for the specific B<ssl>. The list
|
||||
specified overrides the previous setting. The CAs listed do not become
|
||||
trusted (B<list> only contains the names, not the complete certificates); use
|
||||
L<SSL_CTX_load_verify_locations(3)|SSL_CTX_load_verify_locations(3)>
|
||||
to additionally load them for verification.
|
||||
|
||||
If the list of acceptable CAs is compiled in a file, the
|
||||
L<SSL_load_client_CA_file(3)|SSL_load_client_CA_file(3)>
|
||||
function can be used to help importing the necessary data.
|
||||
|
||||
SSL_CTX_add_client_CA() and SSL_add_client_CA() can be used to add additional
|
||||
items the list of client CAs. If no list was specified before using
|
||||
SSL_CTX_set_client_CA_list() or SSL_set_client_CA_list(), a new client
|
||||
CA list for B<ctx> or B<ssl> (as appropriate) is opened. The CAs implicitly
|
||||
specified using
|
||||
L<SSL_CTX_load_verify_locations(3)|SSL_CTX_load_verify_locations(3)>
|
||||
are no longer used automatically.
|
||||
CA list for B<ctx> or B<ssl> (as appropriate) is opened.
|
||||
|
||||
These functions are only useful for TLS/SSL servers.
|
||||
|
||||
@ -80,11 +78,17 @@ to find out the reason.
|
||||
|
||||
=back
|
||||
|
||||
=head1 EXAMPLES
|
||||
|
||||
Scan all certificates in B<CAfile> and list them as acceptable CAs:
|
||||
|
||||
SSL_CTX_set_client_CA_list(ctx,SSL_load_client_CA_file(CAfile));
|
||||
|
||||
=head1 SEE ALSO
|
||||
|
||||
L<ssl(3)|ssl(3)>,
|
||||
L<SSL_get_client_CA_list(3)|SSL_get_client_CA_list(3)>,
|
||||
L<SSL_load_client_CA_file(3)|SSL_load_client_CA_file(3)>
|
||||
L<SSL_load_client_CA_file(3)|SSL_load_client_CA_file(3)>,
|
||||
L<SSL_CTX_load_verify_locations(3)|SSL_CTX_load_verify_locations(3)>
|
||||
|
||||
=cut
|
||||
|
@ -101,7 +101,7 @@ L<SSL_CTX_sess_number(3)|SSL_CTX_sess_number(3)>,
|
||||
L<SSL_CTX_sess_set_cache_size(3)|SSL_CTX_sess_set_cache_size(3)>,
|
||||
L<SSL_CTX_sess_set_get_cb(3)|SSL_CTX_sess_set_get_cb(3)>,
|
||||
L<SSL_CTX_set_session_id_context(3)|SSL_CTX_set_session_id_context(3)>,
|
||||
L<SSL_CTX_set_timeout.pod(3)|SSL_CTX_set_timeout.pod(3)>,
|
||||
L<SSL_CTX_set_timeout(3)|SSL_CTX_set_timeout(3)>,
|
||||
L<SSL_CTX_flush_sessions(3)|SSL_CTX_flush_sessions(3)>
|
||||
|
||||
=cut
|
||||
|
@ -40,7 +40,7 @@ SSL_SESSION_get_ex_data() is used to retrieve the information for B<idx> from
|
||||
B<session>.
|
||||
|
||||
A detailed description for the B<*_get_ex_new_index()> functionality
|
||||
can be found in L<RSA_get_ex_new_index.pod(3)|RSA_get_ex_new_index.pod(3)>.
|
||||
can be found in L<RSA_get_ex_new_index(3)|RSA_get_ex_new_index(3)>.
|
||||
The B<*_get_ex_data()> and B<*_set_ex_data()> functionality is described in
|
||||
L<CRYPTO_set_ex_data(3)|CRYPTO_set_ex_data(3)>.
|
||||
|
||||
|
@ -69,6 +69,17 @@ to read data. This is mainly because TLS/SSL handshakes may occur at any
|
||||
time during the protocol (initiated by either the client or the server);
|
||||
SSL_read(), SSL_peek(), and SSL_write() will handle any pending handshakes.
|
||||
|
||||
=item SSL_ERROR_WANT_CONNECT
|
||||
|
||||
The operation did not complete; the same TLS/SSL I/O function should be
|
||||
called again later. The underlying BIO was not connected yet to the peer
|
||||
and the call would block in connect(). The SSL function should be
|
||||
called again when the connection is established. This messages can only
|
||||
appear with a BIO_s_connect() BIO.
|
||||
In order to find out, when the connection has been successfully established,
|
||||
on many platforms select() or poll() for writing on the socket file descriptor
|
||||
can be used.
|
||||
|
||||
=item SSL_ERROR_WANT_X509_LOOKUP
|
||||
|
||||
The operation did not complete because an application callback set by
|
||||
|
@ -40,7 +40,7 @@ SSL_get_ex_data() is used to retrieve the information for B<idx> from
|
||||
B<ssl>.
|
||||
|
||||
A detailed description for the B<*_get_ex_new_index()> functionality
|
||||
can be found in L<RSA_get_ex_new_index.pod(3)|RSA_get_ex_new_index.pod(3)>.
|
||||
can be found in L<RSA_get_ex_new_index(3)|RSA_get_ex_new_index(3)>.
|
||||
The B<*_get_ex_data()> and B<*_set_ex_data()> functionality is described in
|
||||
L<CRYPTO_set_ex_data(3)|CRYPTO_set_ex_data(3)>.
|
||||
|
||||
|
@ -17,6 +17,12 @@ peer presented. If the peer did not present a certificate, NULL is returned.
|
||||
|
||||
=head1 NOTES
|
||||
|
||||
Due to the protocol definition, a TLS/SSL server will always send a
|
||||
certificate, if present. A client will only send a certificate when
|
||||
explicitely requested to do so by the server (see
|
||||
L<SSL_CTX_set_verify(3)|SSL_CTX_set_verify(3)>). If an anonymous cipher
|
||||
is used, no certificates are sent.
|
||||
|
||||
That a certificate is returned does not indicate information about the
|
||||
verification state, use L<SSL_get_verify_result(3)|SSL_get_verify_result(3)>
|
||||
to check the verification state.
|
||||
@ -43,6 +49,7 @@ The return value points to the certificate presented by the peer.
|
||||
|
||||
=head1 SEE ALSO
|
||||
|
||||
L<ssl(3)|ssl(3)>, L<SSL_get_verify_result(3)|SSL_get_verify_result(3)>
|
||||
L<ssl(3)|ssl(3)>, L<SSL_get_verify_result(3)|SSL_get_verify_result(3)>,
|
||||
L<SSL_CTX_set_verify(3)|SSL_CTX_set_verify(3)>
|
||||
|
||||
=cut
|
||||
|
@ -29,7 +29,22 @@ initialized to client or server mode. This is not the case if a generic
|
||||
method is being used (see L<SSL_CTX_new(3)|SSL_CTX_new(3)>, so that
|
||||
L<SSL_set_connect_state(3)|SSL_set_connect_state(3)> or SSL_set_accept_state()
|
||||
must be used before the first call to an SSL_read() or
|
||||
L<SSL_write(3)|SSL_write(3)> function.
|
||||
L<SSL_write(3)|SSL_write(3)> function).
|
||||
|
||||
SSL_read() works based on the SSL/TLS records. The data are received in
|
||||
records (with a maximum record size of 16kB for SSLv3/TLSv1). Only when a
|
||||
record has been completely received, it can be processed (decryption and
|
||||
check of integrity). Therefore data that was not retrieved at the last
|
||||
call of SSL_read() can still be buffered inside the SSL layer and will be
|
||||
retrieved on the next call to SSL_read(). If B<num> is higher than the
|
||||
number of bytes buffered, SSL_read() will return with the bytes buffered.
|
||||
If no more bytes are in the buffer, SSL_read() will trigger the processing
|
||||
of the next record. Only when the record has been received and processed
|
||||
completely, SSL_read() will return reporting success. At most the contents
|
||||
of the record will be returned. As the size of an SSL/TLS record may exceed
|
||||
the maximum packet size of the underlying transport (e.g. TCP), it may
|
||||
be necessary to read several packets from the transport layer before the
|
||||
record is complete and SSL_read() can succeed.
|
||||
|
||||
If the underlying BIO is B<blocking>, SSL_read() will only return, once the
|
||||
read operation has been finished or an error occurred, except when a
|
||||
|
@ -66,7 +66,7 @@ Call SSL_get_error() with the return value B<ret> to find out the reason.
|
||||
|
||||
L<SSL_get_error(3)|SSL_get_error(3)>, L<SSL_connect(3)|SSL_connect(3)>,
|
||||
L<SSL_accept(3)|SSL_accept(3)>, L<SSL_set_shutdown(3)|SSL_set_shutdown(3)>,
|
||||
L<SSL_clear(3)|SSL_clear(3), L<SSL_free(3)|SSL_free(3)>,
|
||||
L<SSL_clear(3)|SSL_clear(3)>, L<SSL_free(3)|SSL_free(3)>,
|
||||
L<ssl(3)|ssl(3)>, L<bio(3)|bio(3)>
|
||||
|
||||
=cut
|
||||
|
@ -50,6 +50,17 @@ non-blocking socket, nothing is to be done, but select() can be used to check
|
||||
for the required condition. When using a buffering BIO, like a BIO pair, data
|
||||
must be written into or retrieved out of the BIO before being able to continue.
|
||||
|
||||
SSL_write() will only return with success, when the complete contents
|
||||
of B<buf> of length B<num> has been written. This default behaviour
|
||||
can be changed with the SSL_MODE_ENABLE_PARTIAL_WRITE option of
|
||||
L<SSL_CTX_set_mode(3)|SSL_CTX_set_mode(3)>. When this flag is set,
|
||||
SSL_write() will also return with success, when a partial write has been
|
||||
successfully completed. In this case the SSL_write() operation is considered
|
||||
completed. The bytes are sent and a new SSL_write() operation with a new
|
||||
buffer (with the already sent bytes removed) must be started.
|
||||
A partial write is performed with the size of a message block, which is
|
||||
16kB for SSLv3/TLSv1.
|
||||
|
||||
=head1 WARNING
|
||||
|
||||
When an SSL_write() operation has to be repeated because of
|
||||
|
@ -224,6 +224,7 @@ extern "C" {
|
||||
# define SSLEAY_CONF OPENSSL_CONF
|
||||
# define NUL_DEV "nul"
|
||||
# define RFILE ".rnd"
|
||||
# define DEFAULT_HOME "C:"
|
||||
|
||||
#else /* The non-microsoft world world */
|
||||
|
||||
|
@ -39,7 +39,8 @@ all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB)
|
||||
@echo You may get an error following this line. Please ignore.
|
||||
- $(RANLIB) $(LIB)
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
@ -85,15 +86,17 @@ clean:
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
rsar_err.o: ../include/openssl/bn.h ../include/openssl/crypto.h
|
||||
rsar_err.o: ../include/openssl/err.h ../include/openssl/opensslconf.h
|
||||
rsar_err.o: ../include/openssl/bio.h ../include/openssl/bn.h
|
||||
rsar_err.o: ../include/openssl/crypto.h ../include/openssl/err.h
|
||||
rsar_err.o: ../include/openssl/lhash.h ../include/openssl/opensslconf.h
|
||||
rsar_err.o: ../include/openssl/opensslv.h ../include/openssl/rsa.h
|
||||
rsar_err.o: ../include/openssl/rsaref.h ../include/openssl/safestack.h
|
||||
rsar_err.o: ../include/openssl/stack.h
|
||||
rsar_err.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
|
||||
rsaref.o: ../crypto/cryptlib.h ../include/openssl/bio.h ../include/openssl/bn.h
|
||||
rsaref.o: ../include/openssl/buffer.h ../include/openssl/crypto.h
|
||||
rsaref.o: ../include/openssl/e_os.h ../include/openssl/e_os2.h
|
||||
rsaref.o: ../include/openssl/err.h ../include/openssl/opensslconf.h
|
||||
rsaref.o: ../include/openssl/opensslv.h ../include/openssl/rand.h
|
||||
rsaref.o: ../include/openssl/rsa.h ../include/openssl/rsaref.h
|
||||
rsaref.o: ../include/openssl/safestack.h ../include/openssl/stack.h
|
||||
rsaref.o: ../include/openssl/err.h ../include/openssl/lhash.h
|
||||
rsaref.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
|
||||
rsaref.o: ../include/openssl/rand.h ../include/openssl/rsa.h
|
||||
rsaref.o: ../include/openssl/rsaref.h ../include/openssl/safestack.h
|
||||
rsaref.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
|
||||
|
@ -55,7 +55,8 @@ all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB)
|
||||
@echo You may get an error following this line. Please ignore.
|
||||
- $(RANLIB) $(LIB)
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
@ -97,21 +98,23 @@ clean:
|
||||
bio_ssl.o: ../include/openssl/asn1.h ../include/openssl/bio.h
|
||||
bio_ssl.o: ../include/openssl/blowfish.h ../include/openssl/bn.h
|
||||
bio_ssl.o: ../include/openssl/buffer.h ../include/openssl/cast.h
|
||||
bio_ssl.o: ../include/openssl/crypto.h ../include/openssl/des.h
|
||||
bio_ssl.o: ../include/openssl/dh.h ../include/openssl/dsa.h
|
||||
bio_ssl.o: ../include/openssl/e_os2.h ../include/openssl/err.h
|
||||
bio_ssl.o: ../include/openssl/evp.h ../include/openssl/idea.h
|
||||
bio_ssl.o: ../include/openssl/lhash.h ../include/openssl/md2.h
|
||||
bio_ssl.o: ../include/openssl/comp.h ../include/openssl/crypto.h
|
||||
bio_ssl.o: ../include/openssl/des.h ../include/openssl/dh.h
|
||||
bio_ssl.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h
|
||||
bio_ssl.o: ../include/openssl/err.h ../include/openssl/evp.h
|
||||
bio_ssl.o: ../include/openssl/idea.h ../include/openssl/lhash.h
|
||||
bio_ssl.o: ../include/openssl/md2.h ../include/openssl/md4.h
|
||||
bio_ssl.o: ../include/openssl/md5.h ../include/openssl/mdc2.h
|
||||
bio_ssl.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
|
||||
bio_ssl.o: ../include/openssl/opensslv.h ../include/openssl/pem.h
|
||||
bio_ssl.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
|
||||
bio_ssl.o: ../include/openssl/rc2.h ../include/openssl/rc4.h
|
||||
bio_ssl.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h
|
||||
bio_ssl.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
|
||||
bio_ssl.o: ../include/openssl/sha.h ../include/openssl/ssl.h
|
||||
bio_ssl.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
|
||||
bio_ssl.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
|
||||
bio_ssl.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
|
||||
bio_ssl.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
|
||||
bio_ssl.o: ../include/openssl/pem.h ../include/openssl/pem2.h
|
||||
bio_ssl.o: ../include/openssl/pkcs7.h ../include/openssl/rc2.h
|
||||
bio_ssl.o: ../include/openssl/rc4.h ../include/openssl/rc5.h
|
||||
bio_ssl.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h
|
||||
bio_ssl.o: ../include/openssl/safestack.h ../include/openssl/sha.h
|
||||
bio_ssl.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h
|
||||
bio_ssl.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h
|
||||
bio_ssl.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
|
||||
bio_ssl.o: ../include/openssl/tls1.h ../include/openssl/x509.h
|
||||
bio_ssl.o: ../include/openssl/x509_vfy.h
|
||||
s23_clnt.o: ../include/openssl/asn1.h ../include/openssl/bio.h
|
||||
@ -123,7 +126,8 @@ s23_clnt.o: ../include/openssl/dsa.h ../include/openssl/e_os.h
|
||||
s23_clnt.o: ../include/openssl/e_os2.h ../include/openssl/err.h
|
||||
s23_clnt.o: ../include/openssl/evp.h ../include/openssl/idea.h
|
||||
s23_clnt.o: ../include/openssl/lhash.h ../include/openssl/md2.h
|
||||
s23_clnt.o: ../include/openssl/md5.h ../include/openssl/mdc2.h
|
||||
s23_clnt.o: ../include/openssl/md4.h ../include/openssl/md5.h
|
||||
s23_clnt.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h
|
||||
s23_clnt.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
|
||||
s23_clnt.o: ../include/openssl/opensslv.h ../include/openssl/pem.h
|
||||
s23_clnt.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
|
||||
@ -133,8 +137,9 @@ s23_clnt.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h
|
||||
s23_clnt.o: ../include/openssl/safestack.h ../include/openssl/sha.h
|
||||
s23_clnt.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h
|
||||
s23_clnt.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h
|
||||
s23_clnt.o: ../include/openssl/stack.h ../include/openssl/tls1.h
|
||||
s23_clnt.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_locl.h
|
||||
s23_clnt.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
|
||||
s23_clnt.o: ../include/openssl/tls1.h ../include/openssl/x509.h
|
||||
s23_clnt.o: ../include/openssl/x509_vfy.h ssl_locl.h
|
||||
s23_lib.o: ../include/openssl/asn1.h ../include/openssl/bio.h
|
||||
s23_lib.o: ../include/openssl/blowfish.h ../include/openssl/bn.h
|
||||
s23_lib.o: ../include/openssl/buffer.h ../include/openssl/cast.h
|
||||
@ -144,7 +149,8 @@ s23_lib.o: ../include/openssl/dsa.h ../include/openssl/e_os.h
|
||||
s23_lib.o: ../include/openssl/e_os2.h ../include/openssl/err.h
|
||||
s23_lib.o: ../include/openssl/evp.h ../include/openssl/idea.h
|
||||
s23_lib.o: ../include/openssl/lhash.h ../include/openssl/md2.h
|
||||
s23_lib.o: ../include/openssl/md5.h ../include/openssl/mdc2.h
|
||||
s23_lib.o: ../include/openssl/md4.h ../include/openssl/md5.h
|
||||
s23_lib.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h
|
||||
s23_lib.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
|
||||
s23_lib.o: ../include/openssl/opensslv.h ../include/openssl/pem.h
|
||||
s23_lib.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
|
||||
@ -154,8 +160,8 @@ s23_lib.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
|
||||
s23_lib.o: ../include/openssl/sha.h ../include/openssl/ssl.h
|
||||
s23_lib.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
|
||||
s23_lib.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
|
||||
s23_lib.o: ../include/openssl/tls1.h ../include/openssl/x509.h
|
||||
s23_lib.o: ../include/openssl/x509_vfy.h ssl_locl.h
|
||||
s23_lib.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
|
||||
s23_lib.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_locl.h
|
||||
s23_meth.o: ../include/openssl/asn1.h ../include/openssl/bio.h
|
||||
s23_meth.o: ../include/openssl/blowfish.h ../include/openssl/bn.h
|
||||
s23_meth.o: ../include/openssl/buffer.h ../include/openssl/cast.h
|
||||
@ -165,7 +171,8 @@ s23_meth.o: ../include/openssl/dsa.h ../include/openssl/e_os.h
|
||||
s23_meth.o: ../include/openssl/e_os2.h ../include/openssl/err.h
|
||||
s23_meth.o: ../include/openssl/evp.h ../include/openssl/idea.h
|
||||
s23_meth.o: ../include/openssl/lhash.h ../include/openssl/md2.h
|
||||
s23_meth.o: ../include/openssl/md5.h ../include/openssl/mdc2.h
|
||||
s23_meth.o: ../include/openssl/md4.h ../include/openssl/md5.h
|
||||
s23_meth.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h
|
||||
s23_meth.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
|
||||
s23_meth.o: ../include/openssl/opensslv.h ../include/openssl/pem.h
|
||||
s23_meth.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
|
||||
@ -175,8 +182,8 @@ s23_meth.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
|
||||
s23_meth.o: ../include/openssl/sha.h ../include/openssl/ssl.h
|
||||
s23_meth.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
|
||||
s23_meth.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
|
||||
s23_meth.o: ../include/openssl/tls1.h ../include/openssl/x509.h
|
||||
s23_meth.o: ../include/openssl/x509_vfy.h ssl_locl.h
|
||||
s23_meth.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
|
||||
s23_meth.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_locl.h
|
||||
s23_pkt.o: ../include/openssl/asn1.h ../include/openssl/bio.h
|
||||
s23_pkt.o: ../include/openssl/blowfish.h ../include/openssl/bn.h
|
||||
s23_pkt.o: ../include/openssl/buffer.h ../include/openssl/cast.h
|
||||
@ -186,7 +193,8 @@ s23_pkt.o: ../include/openssl/dsa.h ../include/openssl/e_os.h
|
||||
s23_pkt.o: ../include/openssl/e_os2.h ../include/openssl/err.h
|
||||
s23_pkt.o: ../include/openssl/evp.h ../include/openssl/idea.h
|
||||
s23_pkt.o: ../include/openssl/lhash.h ../include/openssl/md2.h
|
||||
s23_pkt.o: ../include/openssl/md5.h ../include/openssl/mdc2.h
|
||||
s23_pkt.o: ../include/openssl/md4.h ../include/openssl/md5.h
|
||||
s23_pkt.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h
|
||||
s23_pkt.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
|
||||
s23_pkt.o: ../include/openssl/opensslv.h ../include/openssl/pem.h
|
||||
s23_pkt.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
|
||||
@ -196,8 +204,8 @@ s23_pkt.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
|
||||
s23_pkt.o: ../include/openssl/sha.h ../include/openssl/ssl.h
|
||||
s23_pkt.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
|
||||
s23_pkt.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
|
||||
s23_pkt.o: ../include/openssl/tls1.h ../include/openssl/x509.h
|
||||
s23_pkt.o: ../include/openssl/x509_vfy.h ssl_locl.h
|
||||
s23_pkt.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
|
||||
s23_pkt.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_locl.h
|
||||
s23_srvr.o: ../include/openssl/asn1.h ../include/openssl/bio.h
|
||||
s23_srvr.o: ../include/openssl/blowfish.h ../include/openssl/bn.h
|
||||
s23_srvr.o: ../include/openssl/buffer.h ../include/openssl/cast.h
|
||||
@ -207,7 +215,8 @@ s23_srvr.o: ../include/openssl/dsa.h ../include/openssl/e_os.h
|
||||
s23_srvr.o: ../include/openssl/e_os2.h ../include/openssl/err.h
|
||||
s23_srvr.o: ../include/openssl/evp.h ../include/openssl/idea.h
|
||||
s23_srvr.o: ../include/openssl/lhash.h ../include/openssl/md2.h
|
||||
s23_srvr.o: ../include/openssl/md5.h ../include/openssl/mdc2.h
|
||||
s23_srvr.o: ../include/openssl/md4.h ../include/openssl/md5.h
|
||||
s23_srvr.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h
|
||||
s23_srvr.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
|
||||
s23_srvr.o: ../include/openssl/opensslv.h ../include/openssl/pem.h
|
||||
s23_srvr.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
|
||||
@ -217,8 +226,9 @@ s23_srvr.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h
|
||||
s23_srvr.o: ../include/openssl/safestack.h ../include/openssl/sha.h
|
||||
s23_srvr.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h
|
||||
s23_srvr.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h
|
||||
s23_srvr.o: ../include/openssl/stack.h ../include/openssl/tls1.h
|
||||
s23_srvr.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_locl.h
|
||||
s23_srvr.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
|
||||
s23_srvr.o: ../include/openssl/tls1.h ../include/openssl/x509.h
|
||||
s23_srvr.o: ../include/openssl/x509_vfy.h ssl_locl.h
|
||||
s2_clnt.o: ../include/openssl/asn1.h ../include/openssl/bio.h
|
||||
s2_clnt.o: ../include/openssl/blowfish.h ../include/openssl/bn.h
|
||||
s2_clnt.o: ../include/openssl/buffer.h ../include/openssl/cast.h
|
||||
@ -228,7 +238,8 @@ s2_clnt.o: ../include/openssl/dsa.h ../include/openssl/e_os.h
|
||||
s2_clnt.o: ../include/openssl/e_os2.h ../include/openssl/err.h
|
||||
s2_clnt.o: ../include/openssl/evp.h ../include/openssl/idea.h
|
||||
s2_clnt.o: ../include/openssl/lhash.h ../include/openssl/md2.h
|
||||
s2_clnt.o: ../include/openssl/md5.h ../include/openssl/mdc2.h
|
||||
s2_clnt.o: ../include/openssl/md4.h ../include/openssl/md5.h
|
||||
s2_clnt.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h
|
||||
s2_clnt.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
|
||||
s2_clnt.o: ../include/openssl/opensslv.h ../include/openssl/pem.h
|
||||
s2_clnt.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
|
||||
@ -238,8 +249,9 @@ s2_clnt.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h
|
||||
s2_clnt.o: ../include/openssl/safestack.h ../include/openssl/sha.h
|
||||
s2_clnt.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h
|
||||
s2_clnt.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h
|
||||
s2_clnt.o: ../include/openssl/stack.h ../include/openssl/tls1.h
|
||||
s2_clnt.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_locl.h
|
||||
s2_clnt.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
|
||||
s2_clnt.o: ../include/openssl/tls1.h ../include/openssl/x509.h
|
||||
s2_clnt.o: ../include/openssl/x509_vfy.h ssl_locl.h
|
||||
s2_enc.o: ../include/openssl/asn1.h ../include/openssl/bio.h
|
||||
s2_enc.o: ../include/openssl/blowfish.h ../include/openssl/bn.h
|
||||
s2_enc.o: ../include/openssl/buffer.h ../include/openssl/cast.h
|
||||
@ -249,7 +261,8 @@ s2_enc.o: ../include/openssl/dsa.h ../include/openssl/e_os.h
|
||||
s2_enc.o: ../include/openssl/e_os2.h ../include/openssl/err.h
|
||||
s2_enc.o: ../include/openssl/evp.h ../include/openssl/idea.h
|
||||
s2_enc.o: ../include/openssl/lhash.h ../include/openssl/md2.h
|
||||
s2_enc.o: ../include/openssl/md5.h ../include/openssl/mdc2.h
|
||||
s2_enc.o: ../include/openssl/md4.h ../include/openssl/md5.h
|
||||
s2_enc.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h
|
||||
s2_enc.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
|
||||
s2_enc.o: ../include/openssl/opensslv.h ../include/openssl/pem.h
|
||||
s2_enc.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
|
||||
@ -259,8 +272,8 @@ s2_enc.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
|
||||
s2_enc.o: ../include/openssl/sha.h ../include/openssl/ssl.h
|
||||
s2_enc.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
|
||||
s2_enc.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
|
||||
s2_enc.o: ../include/openssl/tls1.h ../include/openssl/x509.h
|
||||
s2_enc.o: ../include/openssl/x509_vfy.h ssl_locl.h
|
||||
s2_enc.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
|
||||
s2_enc.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_locl.h
|
||||
s2_lib.o: ../include/openssl/asn1.h ../include/openssl/bio.h
|
||||
s2_lib.o: ../include/openssl/blowfish.h ../include/openssl/bn.h
|
||||
s2_lib.o: ../include/openssl/buffer.h ../include/openssl/cast.h
|
||||
@ -270,7 +283,8 @@ s2_lib.o: ../include/openssl/dsa.h ../include/openssl/e_os.h
|
||||
s2_lib.o: ../include/openssl/e_os2.h ../include/openssl/err.h
|
||||
s2_lib.o: ../include/openssl/evp.h ../include/openssl/idea.h
|
||||
s2_lib.o: ../include/openssl/lhash.h ../include/openssl/md2.h
|
||||
s2_lib.o: ../include/openssl/md5.h ../include/openssl/mdc2.h
|
||||
s2_lib.o: ../include/openssl/md4.h ../include/openssl/md5.h
|
||||
s2_lib.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h
|
||||
s2_lib.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
|
||||
s2_lib.o: ../include/openssl/opensslv.h ../include/openssl/pem.h
|
||||
s2_lib.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
|
||||
@ -280,8 +294,8 @@ s2_lib.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
|
||||
s2_lib.o: ../include/openssl/sha.h ../include/openssl/ssl.h
|
||||
s2_lib.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
|
||||
s2_lib.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
|
||||
s2_lib.o: ../include/openssl/tls1.h ../include/openssl/x509.h
|
||||
s2_lib.o: ../include/openssl/x509_vfy.h ssl_locl.h
|
||||
s2_lib.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
|
||||
s2_lib.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_locl.h
|
||||
s2_meth.o: ../include/openssl/asn1.h ../include/openssl/bio.h
|
||||
s2_meth.o: ../include/openssl/blowfish.h ../include/openssl/bn.h
|
||||
s2_meth.o: ../include/openssl/buffer.h ../include/openssl/cast.h
|
||||
@ -291,7 +305,8 @@ s2_meth.o: ../include/openssl/dsa.h ../include/openssl/e_os.h
|
||||
s2_meth.o: ../include/openssl/e_os2.h ../include/openssl/err.h
|
||||
s2_meth.o: ../include/openssl/evp.h ../include/openssl/idea.h
|
||||
s2_meth.o: ../include/openssl/lhash.h ../include/openssl/md2.h
|
||||
s2_meth.o: ../include/openssl/md5.h ../include/openssl/mdc2.h
|
||||
s2_meth.o: ../include/openssl/md4.h ../include/openssl/md5.h
|
||||
s2_meth.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h
|
||||
s2_meth.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
|
||||
s2_meth.o: ../include/openssl/opensslv.h ../include/openssl/pem.h
|
||||
s2_meth.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
|
||||
@ -301,8 +316,8 @@ s2_meth.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
|
||||
s2_meth.o: ../include/openssl/sha.h ../include/openssl/ssl.h
|
||||
s2_meth.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
|
||||
s2_meth.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
|
||||
s2_meth.o: ../include/openssl/tls1.h ../include/openssl/x509.h
|
||||
s2_meth.o: ../include/openssl/x509_vfy.h ssl_locl.h
|
||||
s2_meth.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
|
||||
s2_meth.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_locl.h
|
||||
s2_pkt.o: ../include/openssl/asn1.h ../include/openssl/bio.h
|
||||
s2_pkt.o: ../include/openssl/blowfish.h ../include/openssl/bn.h
|
||||
s2_pkt.o: ../include/openssl/buffer.h ../include/openssl/cast.h
|
||||
@ -312,7 +327,8 @@ s2_pkt.o: ../include/openssl/dsa.h ../include/openssl/e_os.h
|
||||
s2_pkt.o: ../include/openssl/e_os2.h ../include/openssl/err.h
|
||||
s2_pkt.o: ../include/openssl/evp.h ../include/openssl/idea.h
|
||||
s2_pkt.o: ../include/openssl/lhash.h ../include/openssl/md2.h
|
||||
s2_pkt.o: ../include/openssl/md5.h ../include/openssl/mdc2.h
|
||||
s2_pkt.o: ../include/openssl/md4.h ../include/openssl/md5.h
|
||||
s2_pkt.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h
|
||||
s2_pkt.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
|
||||
s2_pkt.o: ../include/openssl/opensslv.h ../include/openssl/pem.h
|
||||
s2_pkt.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
|
||||
@ -322,8 +338,8 @@ s2_pkt.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
|
||||
s2_pkt.o: ../include/openssl/sha.h ../include/openssl/ssl.h
|
||||
s2_pkt.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
|
||||
s2_pkt.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
|
||||
s2_pkt.o: ../include/openssl/tls1.h ../include/openssl/x509.h
|
||||
s2_pkt.o: ../include/openssl/x509_vfy.h ssl_locl.h
|
||||
s2_pkt.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
|
||||
s2_pkt.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_locl.h
|
||||
s2_srvr.o: ../include/openssl/asn1.h ../include/openssl/bio.h
|
||||
s2_srvr.o: ../include/openssl/blowfish.h ../include/openssl/bn.h
|
||||
s2_srvr.o: ../include/openssl/buffer.h ../include/openssl/cast.h
|
||||
@ -333,7 +349,8 @@ s2_srvr.o: ../include/openssl/dsa.h ../include/openssl/e_os.h
|
||||
s2_srvr.o: ../include/openssl/e_os2.h ../include/openssl/err.h
|
||||
s2_srvr.o: ../include/openssl/evp.h ../include/openssl/idea.h
|
||||
s2_srvr.o: ../include/openssl/lhash.h ../include/openssl/md2.h
|
||||
s2_srvr.o: ../include/openssl/md5.h ../include/openssl/mdc2.h
|
||||
s2_srvr.o: ../include/openssl/md4.h ../include/openssl/md5.h
|
||||
s2_srvr.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h
|
||||
s2_srvr.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
|
||||
s2_srvr.o: ../include/openssl/opensslv.h ../include/openssl/pem.h
|
||||
s2_srvr.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
|
||||
@ -343,8 +360,9 @@ s2_srvr.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h
|
||||
s2_srvr.o: ../include/openssl/safestack.h ../include/openssl/sha.h
|
||||
s2_srvr.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h
|
||||
s2_srvr.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h
|
||||
s2_srvr.o: ../include/openssl/stack.h ../include/openssl/tls1.h
|
||||
s2_srvr.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_locl.h
|
||||
s2_srvr.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
|
||||
s2_srvr.o: ../include/openssl/tls1.h ../include/openssl/x509.h
|
||||
s2_srvr.o: ../include/openssl/x509_vfy.h ssl_locl.h
|
||||
s3_both.o: ../include/openssl/asn1.h ../include/openssl/bio.h
|
||||
s3_both.o: ../include/openssl/blowfish.h ../include/openssl/bn.h
|
||||
s3_both.o: ../include/openssl/buffer.h ../include/openssl/cast.h
|
||||
@ -354,7 +372,8 @@ s3_both.o: ../include/openssl/dsa.h ../include/openssl/e_os.h
|
||||
s3_both.o: ../include/openssl/e_os2.h ../include/openssl/err.h
|
||||
s3_both.o: ../include/openssl/evp.h ../include/openssl/idea.h
|
||||
s3_both.o: ../include/openssl/lhash.h ../include/openssl/md2.h
|
||||
s3_both.o: ../include/openssl/md5.h ../include/openssl/mdc2.h
|
||||
s3_both.o: ../include/openssl/md4.h ../include/openssl/md5.h
|
||||
s3_both.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h
|
||||
s3_both.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
|
||||
s3_both.o: ../include/openssl/opensslv.h ../include/openssl/pem.h
|
||||
s3_both.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
|
||||
@ -364,8 +383,9 @@ s3_both.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h
|
||||
s3_both.o: ../include/openssl/safestack.h ../include/openssl/sha.h
|
||||
s3_both.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h
|
||||
s3_both.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h
|
||||
s3_both.o: ../include/openssl/stack.h ../include/openssl/tls1.h
|
||||
s3_both.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_locl.h
|
||||
s3_both.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
|
||||
s3_both.o: ../include/openssl/tls1.h ../include/openssl/x509.h
|
||||
s3_both.o: ../include/openssl/x509_vfy.h ssl_locl.h
|
||||
s3_clnt.o: ../include/openssl/asn1.h ../include/openssl/bio.h
|
||||
s3_clnt.o: ../include/openssl/blowfish.h ../include/openssl/bn.h
|
||||
s3_clnt.o: ../include/openssl/buffer.h ../include/openssl/cast.h
|
||||
@ -375,7 +395,8 @@ s3_clnt.o: ../include/openssl/dsa.h ../include/openssl/e_os.h
|
||||
s3_clnt.o: ../include/openssl/e_os2.h ../include/openssl/err.h
|
||||
s3_clnt.o: ../include/openssl/evp.h ../include/openssl/idea.h
|
||||
s3_clnt.o: ../include/openssl/lhash.h ../include/openssl/md2.h
|
||||
s3_clnt.o: ../include/openssl/md5.h ../include/openssl/mdc2.h
|
||||
s3_clnt.o: ../include/openssl/md4.h ../include/openssl/md5.h
|
||||
s3_clnt.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h
|
||||
s3_clnt.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
|
||||
s3_clnt.o: ../include/openssl/opensslv.h ../include/openssl/pem.h
|
||||
s3_clnt.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
|
||||
@ -385,8 +406,9 @@ s3_clnt.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h
|
||||
s3_clnt.o: ../include/openssl/safestack.h ../include/openssl/sha.h
|
||||
s3_clnt.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h
|
||||
s3_clnt.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h
|
||||
s3_clnt.o: ../include/openssl/stack.h ../include/openssl/tls1.h
|
||||
s3_clnt.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_locl.h
|
||||
s3_clnt.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
|
||||
s3_clnt.o: ../include/openssl/tls1.h ../include/openssl/x509.h
|
||||
s3_clnt.o: ../include/openssl/x509_vfy.h ssl_locl.h
|
||||
s3_enc.o: ../include/openssl/asn1.h ../include/openssl/bio.h
|
||||
s3_enc.o: ../include/openssl/blowfish.h ../include/openssl/bn.h
|
||||
s3_enc.o: ../include/openssl/buffer.h ../include/openssl/cast.h
|
||||
@ -396,7 +418,8 @@ s3_enc.o: ../include/openssl/dsa.h ../include/openssl/e_os.h
|
||||
s3_enc.o: ../include/openssl/e_os2.h ../include/openssl/err.h
|
||||
s3_enc.o: ../include/openssl/evp.h ../include/openssl/idea.h
|
||||
s3_enc.o: ../include/openssl/lhash.h ../include/openssl/md2.h
|
||||
s3_enc.o: ../include/openssl/md5.h ../include/openssl/mdc2.h
|
||||
s3_enc.o: ../include/openssl/md4.h ../include/openssl/md5.h
|
||||
s3_enc.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h
|
||||
s3_enc.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
|
||||
s3_enc.o: ../include/openssl/opensslv.h ../include/openssl/pem.h
|
||||
s3_enc.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
|
||||
@ -406,8 +429,8 @@ s3_enc.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
|
||||
s3_enc.o: ../include/openssl/sha.h ../include/openssl/ssl.h
|
||||
s3_enc.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
|
||||
s3_enc.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
|
||||
s3_enc.o: ../include/openssl/tls1.h ../include/openssl/x509.h
|
||||
s3_enc.o: ../include/openssl/x509_vfy.h ssl_locl.h
|
||||
s3_enc.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
|
||||
s3_enc.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_locl.h
|
||||
s3_lib.o: ../include/openssl/asn1.h ../include/openssl/bio.h
|
||||
s3_lib.o: ../include/openssl/blowfish.h ../include/openssl/bn.h
|
||||
s3_lib.o: ../include/openssl/buffer.h ../include/openssl/cast.h
|
||||
@ -417,7 +440,8 @@ s3_lib.o: ../include/openssl/dsa.h ../include/openssl/e_os.h
|
||||
s3_lib.o: ../include/openssl/e_os2.h ../include/openssl/err.h
|
||||
s3_lib.o: ../include/openssl/evp.h ../include/openssl/idea.h
|
||||
s3_lib.o: ../include/openssl/lhash.h ../include/openssl/md2.h
|
||||
s3_lib.o: ../include/openssl/md5.h ../include/openssl/mdc2.h
|
||||
s3_lib.o: ../include/openssl/md4.h ../include/openssl/md5.h
|
||||
s3_lib.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h
|
||||
s3_lib.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
|
||||
s3_lib.o: ../include/openssl/opensslv.h ../include/openssl/pem.h
|
||||
s3_lib.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
|
||||
@ -427,8 +451,8 @@ s3_lib.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
|
||||
s3_lib.o: ../include/openssl/sha.h ../include/openssl/ssl.h
|
||||
s3_lib.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
|
||||
s3_lib.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
|
||||
s3_lib.o: ../include/openssl/tls1.h ../include/openssl/x509.h
|
||||
s3_lib.o: ../include/openssl/x509_vfy.h ssl_locl.h
|
||||
s3_lib.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
|
||||
s3_lib.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_locl.h
|
||||
s3_meth.o: ../include/openssl/asn1.h ../include/openssl/bio.h
|
||||
s3_meth.o: ../include/openssl/blowfish.h ../include/openssl/bn.h
|
||||
s3_meth.o: ../include/openssl/buffer.h ../include/openssl/cast.h
|
||||
@ -438,7 +462,8 @@ s3_meth.o: ../include/openssl/dsa.h ../include/openssl/e_os.h
|
||||
s3_meth.o: ../include/openssl/e_os2.h ../include/openssl/err.h
|
||||
s3_meth.o: ../include/openssl/evp.h ../include/openssl/idea.h
|
||||
s3_meth.o: ../include/openssl/lhash.h ../include/openssl/md2.h
|
||||
s3_meth.o: ../include/openssl/md5.h ../include/openssl/mdc2.h
|
||||
s3_meth.o: ../include/openssl/md4.h ../include/openssl/md5.h
|
||||
s3_meth.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h
|
||||
s3_meth.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
|
||||
s3_meth.o: ../include/openssl/opensslv.h ../include/openssl/pem.h
|
||||
s3_meth.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
|
||||
@ -448,8 +473,8 @@ s3_meth.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
|
||||
s3_meth.o: ../include/openssl/sha.h ../include/openssl/ssl.h
|
||||
s3_meth.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
|
||||
s3_meth.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
|
||||
s3_meth.o: ../include/openssl/tls1.h ../include/openssl/x509.h
|
||||
s3_meth.o: ../include/openssl/x509_vfy.h ssl_locl.h
|
||||
s3_meth.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
|
||||
s3_meth.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_locl.h
|
||||
s3_pkt.o: ../include/openssl/asn1.h ../include/openssl/bio.h
|
||||
s3_pkt.o: ../include/openssl/blowfish.h ../include/openssl/bn.h
|
||||
s3_pkt.o: ../include/openssl/buffer.h ../include/openssl/cast.h
|
||||
@ -459,7 +484,8 @@ s3_pkt.o: ../include/openssl/dsa.h ../include/openssl/e_os.h
|
||||
s3_pkt.o: ../include/openssl/e_os2.h ../include/openssl/err.h
|
||||
s3_pkt.o: ../include/openssl/evp.h ../include/openssl/idea.h
|
||||
s3_pkt.o: ../include/openssl/lhash.h ../include/openssl/md2.h
|
||||
s3_pkt.o: ../include/openssl/md5.h ../include/openssl/mdc2.h
|
||||
s3_pkt.o: ../include/openssl/md4.h ../include/openssl/md5.h
|
||||
s3_pkt.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h
|
||||
s3_pkt.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
|
||||
s3_pkt.o: ../include/openssl/opensslv.h ../include/openssl/pem.h
|
||||
s3_pkt.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
|
||||
@ -469,8 +495,8 @@ s3_pkt.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
|
||||
s3_pkt.o: ../include/openssl/sha.h ../include/openssl/ssl.h
|
||||
s3_pkt.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
|
||||
s3_pkt.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
|
||||
s3_pkt.o: ../include/openssl/tls1.h ../include/openssl/x509.h
|
||||
s3_pkt.o: ../include/openssl/x509_vfy.h ssl_locl.h
|
||||
s3_pkt.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
|
||||
s3_pkt.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_locl.h
|
||||
s3_srvr.o: ../include/openssl/asn1.h ../include/openssl/bio.h
|
||||
s3_srvr.o: ../include/openssl/blowfish.h ../include/openssl/bn.h
|
||||
s3_srvr.o: ../include/openssl/buffer.h ../include/openssl/cast.h
|
||||
@ -480,7 +506,8 @@ s3_srvr.o: ../include/openssl/dsa.h ../include/openssl/e_os.h
|
||||
s3_srvr.o: ../include/openssl/e_os2.h ../include/openssl/err.h
|
||||
s3_srvr.o: ../include/openssl/evp.h ../include/openssl/idea.h
|
||||
s3_srvr.o: ../include/openssl/lhash.h ../include/openssl/md2.h
|
||||
s3_srvr.o: ../include/openssl/md5.h ../include/openssl/mdc2.h
|
||||
s3_srvr.o: ../include/openssl/md4.h ../include/openssl/md5.h
|
||||
s3_srvr.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h
|
||||
s3_srvr.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
|
||||
s3_srvr.o: ../include/openssl/opensslv.h ../include/openssl/pem.h
|
||||
s3_srvr.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
|
||||
@ -490,8 +517,9 @@ s3_srvr.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h
|
||||
s3_srvr.o: ../include/openssl/safestack.h ../include/openssl/sha.h
|
||||
s3_srvr.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h
|
||||
s3_srvr.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h
|
||||
s3_srvr.o: ../include/openssl/stack.h ../include/openssl/tls1.h
|
||||
s3_srvr.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_locl.h
|
||||
s3_srvr.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
|
||||
s3_srvr.o: ../include/openssl/tls1.h ../include/openssl/x509.h
|
||||
s3_srvr.o: ../include/openssl/x509_vfy.h ssl_locl.h
|
||||
ssl_algs.o: ../include/openssl/asn1.h ../include/openssl/bio.h
|
||||
ssl_algs.o: ../include/openssl/blowfish.h ../include/openssl/bn.h
|
||||
ssl_algs.o: ../include/openssl/buffer.h ../include/openssl/cast.h
|
||||
@ -501,7 +529,8 @@ ssl_algs.o: ../include/openssl/dsa.h ../include/openssl/e_os.h
|
||||
ssl_algs.o: ../include/openssl/e_os2.h ../include/openssl/err.h
|
||||
ssl_algs.o: ../include/openssl/evp.h ../include/openssl/idea.h
|
||||
ssl_algs.o: ../include/openssl/lhash.h ../include/openssl/md2.h
|
||||
ssl_algs.o: ../include/openssl/md5.h ../include/openssl/mdc2.h
|
||||
ssl_algs.o: ../include/openssl/md4.h ../include/openssl/md5.h
|
||||
ssl_algs.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h
|
||||
ssl_algs.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
|
||||
ssl_algs.o: ../include/openssl/opensslv.h ../include/openssl/pem.h
|
||||
ssl_algs.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
|
||||
@ -511,8 +540,8 @@ ssl_algs.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
|
||||
ssl_algs.o: ../include/openssl/sha.h ../include/openssl/ssl.h
|
||||
ssl_algs.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
|
||||
ssl_algs.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
|
||||
ssl_algs.o: ../include/openssl/tls1.h ../include/openssl/x509.h
|
||||
ssl_algs.o: ../include/openssl/x509_vfy.h ssl_locl.h
|
||||
ssl_algs.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
|
||||
ssl_algs.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_locl.h
|
||||
ssl_asn1.o: ../include/openssl/asn1.h ../include/openssl/asn1_mac.h
|
||||
ssl_asn1.o: ../include/openssl/bio.h ../include/openssl/blowfish.h
|
||||
ssl_asn1.o: ../include/openssl/bn.h ../include/openssl/buffer.h
|
||||
@ -522,8 +551,9 @@ ssl_asn1.o: ../include/openssl/dh.h ../include/openssl/dsa.h
|
||||
ssl_asn1.o: ../include/openssl/e_os.h ../include/openssl/e_os2.h
|
||||
ssl_asn1.o: ../include/openssl/err.h ../include/openssl/evp.h
|
||||
ssl_asn1.o: ../include/openssl/idea.h ../include/openssl/lhash.h
|
||||
ssl_asn1.o: ../include/openssl/md2.h ../include/openssl/md5.h
|
||||
ssl_asn1.o: ../include/openssl/mdc2.h ../include/openssl/objects.h
|
||||
ssl_asn1.o: ../include/openssl/md2.h ../include/openssl/md4.h
|
||||
ssl_asn1.o: ../include/openssl/md5.h ../include/openssl/mdc2.h
|
||||
ssl_asn1.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
|
||||
ssl_asn1.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
|
||||
ssl_asn1.o: ../include/openssl/pem.h ../include/openssl/pem2.h
|
||||
ssl_asn1.o: ../include/openssl/pkcs7.h ../include/openssl/rc2.h
|
||||
@ -532,8 +562,9 @@ ssl_asn1.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h
|
||||
ssl_asn1.o: ../include/openssl/safestack.h ../include/openssl/sha.h
|
||||
ssl_asn1.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h
|
||||
ssl_asn1.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h
|
||||
ssl_asn1.o: ../include/openssl/stack.h ../include/openssl/tls1.h
|
||||
ssl_asn1.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_locl.h
|
||||
ssl_asn1.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
|
||||
ssl_asn1.o: ../include/openssl/tls1.h ../include/openssl/x509.h
|
||||
ssl_asn1.o: ../include/openssl/x509_vfy.h ssl_locl.h
|
||||
ssl_cert.o: ../include/openssl/asn1.h ../include/openssl/bio.h
|
||||
ssl_cert.o: ../include/openssl/blowfish.h ../include/openssl/bn.h
|
||||
ssl_cert.o: ../include/openssl/buffer.h ../include/openssl/cast.h
|
||||
@ -541,19 +572,21 @@ ssl_cert.o: ../include/openssl/comp.h ../include/openssl/conf.h
|
||||
ssl_cert.o: ../include/openssl/crypto.h ../include/openssl/des.h
|
||||
ssl_cert.o: ../include/openssl/dh.h ../include/openssl/dsa.h
|
||||
ssl_cert.o: ../include/openssl/e_os.h ../include/openssl/e_os.h
|
||||
ssl_cert.o: ../include/openssl/e_os2.h ../include/openssl/err.h
|
||||
ssl_cert.o: ../include/openssl/evp.h ../include/openssl/idea.h
|
||||
ssl_cert.o: ../include/openssl/lhash.h ../include/openssl/md2.h
|
||||
ssl_cert.o: ../include/openssl/e_os.h ../include/openssl/e_os2.h
|
||||
ssl_cert.o: ../include/openssl/err.h ../include/openssl/evp.h
|
||||
ssl_cert.o: ../include/openssl/idea.h ../include/openssl/lhash.h
|
||||
ssl_cert.o: ../include/openssl/md2.h ../include/openssl/md4.h
|
||||
ssl_cert.o: ../include/openssl/md5.h ../include/openssl/mdc2.h
|
||||
ssl_cert.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
|
||||
ssl_cert.o: ../include/openssl/opensslv.h ../include/openssl/pem.h
|
||||
ssl_cert.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
|
||||
ssl_cert.o: ../include/openssl/rc2.h ../include/openssl/rc4.h
|
||||
ssl_cert.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h
|
||||
ssl_cert.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
|
||||
ssl_cert.o: ../include/openssl/sha.h ../include/openssl/ssl.h
|
||||
ssl_cert.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
|
||||
ssl_cert.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
|
||||
ssl_cert.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
|
||||
ssl_cert.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
|
||||
ssl_cert.o: ../include/openssl/pem.h ../include/openssl/pem2.h
|
||||
ssl_cert.o: ../include/openssl/pkcs7.h ../include/openssl/rc2.h
|
||||
ssl_cert.o: ../include/openssl/rc4.h ../include/openssl/rc5.h
|
||||
ssl_cert.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h
|
||||
ssl_cert.o: ../include/openssl/safestack.h ../include/openssl/sha.h
|
||||
ssl_cert.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h
|
||||
ssl_cert.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h
|
||||
ssl_cert.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
|
||||
ssl_cert.o: ../include/openssl/tls1.h ../include/openssl/x509.h
|
||||
ssl_cert.o: ../include/openssl/x509_vfy.h ../include/openssl/x509v3.h
|
||||
ssl_cert.o: ssl_locl.h
|
||||
@ -566,7 +599,8 @@ ssl_ciph.o: ../include/openssl/dsa.h ../include/openssl/e_os.h
|
||||
ssl_ciph.o: ../include/openssl/e_os2.h ../include/openssl/err.h
|
||||
ssl_ciph.o: ../include/openssl/evp.h ../include/openssl/idea.h
|
||||
ssl_ciph.o: ../include/openssl/lhash.h ../include/openssl/md2.h
|
||||
ssl_ciph.o: ../include/openssl/md5.h ../include/openssl/mdc2.h
|
||||
ssl_ciph.o: ../include/openssl/md4.h ../include/openssl/md5.h
|
||||
ssl_ciph.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h
|
||||
ssl_ciph.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
|
||||
ssl_ciph.o: ../include/openssl/opensslv.h ../include/openssl/pem.h
|
||||
ssl_ciph.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
|
||||
@ -576,46 +610,50 @@ ssl_ciph.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
|
||||
ssl_ciph.o: ../include/openssl/sha.h ../include/openssl/ssl.h
|
||||
ssl_ciph.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
|
||||
ssl_ciph.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
|
||||
ssl_ciph.o: ../include/openssl/tls1.h ../include/openssl/x509.h
|
||||
ssl_ciph.o: ../include/openssl/x509_vfy.h ssl_locl.h
|
||||
ssl_ciph.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
|
||||
ssl_ciph.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_locl.h
|
||||
ssl_err.o: ../include/openssl/asn1.h ../include/openssl/bio.h
|
||||
ssl_err.o: ../include/openssl/blowfish.h ../include/openssl/bn.h
|
||||
ssl_err.o: ../include/openssl/buffer.h ../include/openssl/cast.h
|
||||
ssl_err.o: ../include/openssl/crypto.h ../include/openssl/des.h
|
||||
ssl_err.o: ../include/openssl/dh.h ../include/openssl/dsa.h
|
||||
ssl_err.o: ../include/openssl/e_os2.h ../include/openssl/err.h
|
||||
ssl_err.o: ../include/openssl/evp.h ../include/openssl/idea.h
|
||||
ssl_err.o: ../include/openssl/lhash.h ../include/openssl/md2.h
|
||||
ssl_err.o: ../include/openssl/comp.h ../include/openssl/crypto.h
|
||||
ssl_err.o: ../include/openssl/des.h ../include/openssl/dh.h
|
||||
ssl_err.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h
|
||||
ssl_err.o: ../include/openssl/err.h ../include/openssl/evp.h
|
||||
ssl_err.o: ../include/openssl/idea.h ../include/openssl/lhash.h
|
||||
ssl_err.o: ../include/openssl/md2.h ../include/openssl/md4.h
|
||||
ssl_err.o: ../include/openssl/md5.h ../include/openssl/mdc2.h
|
||||
ssl_err.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
|
||||
ssl_err.o: ../include/openssl/opensslv.h ../include/openssl/pem.h
|
||||
ssl_err.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
|
||||
ssl_err.o: ../include/openssl/rc2.h ../include/openssl/rc4.h
|
||||
ssl_err.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h
|
||||
ssl_err.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
|
||||
ssl_err.o: ../include/openssl/sha.h ../include/openssl/ssl.h
|
||||
ssl_err.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
|
||||
ssl_err.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
|
||||
ssl_err.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
|
||||
ssl_err.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
|
||||
ssl_err.o: ../include/openssl/pem.h ../include/openssl/pem2.h
|
||||
ssl_err.o: ../include/openssl/pkcs7.h ../include/openssl/rc2.h
|
||||
ssl_err.o: ../include/openssl/rc4.h ../include/openssl/rc5.h
|
||||
ssl_err.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h
|
||||
ssl_err.o: ../include/openssl/safestack.h ../include/openssl/sha.h
|
||||
ssl_err.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h
|
||||
ssl_err.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h
|
||||
ssl_err.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
|
||||
ssl_err.o: ../include/openssl/tls1.h ../include/openssl/x509.h
|
||||
ssl_err.o: ../include/openssl/x509_vfy.h
|
||||
ssl_err2.o: ../include/openssl/asn1.h ../include/openssl/bio.h
|
||||
ssl_err2.o: ../include/openssl/blowfish.h ../include/openssl/bn.h
|
||||
ssl_err2.o: ../include/openssl/buffer.h ../include/openssl/cast.h
|
||||
ssl_err2.o: ../include/openssl/crypto.h ../include/openssl/des.h
|
||||
ssl_err2.o: ../include/openssl/dh.h ../include/openssl/dsa.h
|
||||
ssl_err2.o: ../include/openssl/e_os2.h ../include/openssl/err.h
|
||||
ssl_err2.o: ../include/openssl/evp.h ../include/openssl/idea.h
|
||||
ssl_err2.o: ../include/openssl/lhash.h ../include/openssl/md2.h
|
||||
ssl_err2.o: ../include/openssl/comp.h ../include/openssl/crypto.h
|
||||
ssl_err2.o: ../include/openssl/des.h ../include/openssl/dh.h
|
||||
ssl_err2.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h
|
||||
ssl_err2.o: ../include/openssl/err.h ../include/openssl/evp.h
|
||||
ssl_err2.o: ../include/openssl/idea.h ../include/openssl/lhash.h
|
||||
ssl_err2.o: ../include/openssl/md2.h ../include/openssl/md4.h
|
||||
ssl_err2.o: ../include/openssl/md5.h ../include/openssl/mdc2.h
|
||||
ssl_err2.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
|
||||
ssl_err2.o: ../include/openssl/opensslv.h ../include/openssl/pem.h
|
||||
ssl_err2.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
|
||||
ssl_err2.o: ../include/openssl/rc2.h ../include/openssl/rc4.h
|
||||
ssl_err2.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h
|
||||
ssl_err2.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
|
||||
ssl_err2.o: ../include/openssl/sha.h ../include/openssl/ssl.h
|
||||
ssl_err2.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
|
||||
ssl_err2.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
|
||||
ssl_err2.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
|
||||
ssl_err2.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
|
||||
ssl_err2.o: ../include/openssl/pem.h ../include/openssl/pem2.h
|
||||
ssl_err2.o: ../include/openssl/pkcs7.h ../include/openssl/rc2.h
|
||||
ssl_err2.o: ../include/openssl/rc4.h ../include/openssl/rc5.h
|
||||
ssl_err2.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h
|
||||
ssl_err2.o: ../include/openssl/safestack.h ../include/openssl/sha.h
|
||||
ssl_err2.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h
|
||||
ssl_err2.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h
|
||||
ssl_err2.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
|
||||
ssl_err2.o: ../include/openssl/tls1.h ../include/openssl/x509.h
|
||||
ssl_err2.o: ../include/openssl/x509_vfy.h
|
||||
ssl_lib.o: ../include/openssl/asn1.h ../include/openssl/bio.h
|
||||
@ -624,20 +662,22 @@ ssl_lib.o: ../include/openssl/buffer.h ../include/openssl/cast.h
|
||||
ssl_lib.o: ../include/openssl/comp.h ../include/openssl/conf.h
|
||||
ssl_lib.o: ../include/openssl/crypto.h ../include/openssl/des.h
|
||||
ssl_lib.o: ../include/openssl/dh.h ../include/openssl/dsa.h
|
||||
ssl_lib.o: ../include/openssl/e_os.h ../include/openssl/e_os2.h
|
||||
ssl_lib.o: ../include/openssl/err.h ../include/openssl/evp.h
|
||||
ssl_lib.o: ../include/openssl/idea.h ../include/openssl/lhash.h
|
||||
ssl_lib.o: ../include/openssl/md2.h ../include/openssl/md5.h
|
||||
ssl_lib.o: ../include/openssl/mdc2.h ../include/openssl/objects.h
|
||||
ssl_lib.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
|
||||
ssl_lib.o: ../include/openssl/pem.h ../include/openssl/pem2.h
|
||||
ssl_lib.o: ../include/openssl/pkcs7.h ../include/openssl/rc2.h
|
||||
ssl_lib.o: ../include/openssl/rc4.h ../include/openssl/rc5.h
|
||||
ssl_lib.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h
|
||||
ssl_lib.o: ../include/openssl/safestack.h ../include/openssl/sha.h
|
||||
ssl_lib.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h
|
||||
ssl_lib.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h
|
||||
ssl_lib.o: ../include/openssl/stack.h ../include/openssl/tls1.h
|
||||
ssl_lib.o: ../include/openssl/e_os.h ../include/openssl/e_os.h
|
||||
ssl_lib.o: ../include/openssl/e_os2.h ../include/openssl/err.h
|
||||
ssl_lib.o: ../include/openssl/evp.h ../include/openssl/idea.h
|
||||
ssl_lib.o: ../include/openssl/lhash.h ../include/openssl/md2.h
|
||||
ssl_lib.o: ../include/openssl/md4.h ../include/openssl/md5.h
|
||||
ssl_lib.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h
|
||||
ssl_lib.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
|
||||
ssl_lib.o: ../include/openssl/opensslv.h ../include/openssl/pem.h
|
||||
ssl_lib.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
|
||||
ssl_lib.o: ../include/openssl/rc2.h ../include/openssl/rc4.h
|
||||
ssl_lib.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h
|
||||
ssl_lib.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
|
||||
ssl_lib.o: ../include/openssl/sha.h ../include/openssl/ssl.h
|
||||
ssl_lib.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
|
||||
ssl_lib.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
|
||||
ssl_lib.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
|
||||
ssl_lib.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h
|
||||
ssl_lib.o: ../include/openssl/x509v3.h ssl_locl.h
|
||||
ssl_rsa.o: ../include/openssl/asn1.h ../include/openssl/bio.h
|
||||
@ -649,7 +689,8 @@ ssl_rsa.o: ../include/openssl/dsa.h ../include/openssl/e_os.h
|
||||
ssl_rsa.o: ../include/openssl/e_os2.h ../include/openssl/err.h
|
||||
ssl_rsa.o: ../include/openssl/evp.h ../include/openssl/idea.h
|
||||
ssl_rsa.o: ../include/openssl/lhash.h ../include/openssl/md2.h
|
||||
ssl_rsa.o: ../include/openssl/md5.h ../include/openssl/mdc2.h
|
||||
ssl_rsa.o: ../include/openssl/md4.h ../include/openssl/md5.h
|
||||
ssl_rsa.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h
|
||||
ssl_rsa.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
|
||||
ssl_rsa.o: ../include/openssl/opensslv.h ../include/openssl/pem.h
|
||||
ssl_rsa.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
|
||||
@ -659,8 +700,8 @@ ssl_rsa.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
|
||||
ssl_rsa.o: ../include/openssl/sha.h ../include/openssl/ssl.h
|
||||
ssl_rsa.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
|
||||
ssl_rsa.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
|
||||
ssl_rsa.o: ../include/openssl/tls1.h ../include/openssl/x509.h
|
||||
ssl_rsa.o: ../include/openssl/x509_vfy.h ssl_locl.h
|
||||
ssl_rsa.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
|
||||
ssl_rsa.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_locl.h
|
||||
ssl_sess.o: ../include/openssl/asn1.h ../include/openssl/bio.h
|
||||
ssl_sess.o: ../include/openssl/blowfish.h ../include/openssl/bn.h
|
||||
ssl_sess.o: ../include/openssl/buffer.h ../include/openssl/cast.h
|
||||
@ -670,7 +711,8 @@ ssl_sess.o: ../include/openssl/dsa.h ../include/openssl/e_os.h
|
||||
ssl_sess.o: ../include/openssl/e_os2.h ../include/openssl/err.h
|
||||
ssl_sess.o: ../include/openssl/evp.h ../include/openssl/idea.h
|
||||
ssl_sess.o: ../include/openssl/lhash.h ../include/openssl/md2.h
|
||||
ssl_sess.o: ../include/openssl/md5.h ../include/openssl/mdc2.h
|
||||
ssl_sess.o: ../include/openssl/md4.h ../include/openssl/md5.h
|
||||
ssl_sess.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h
|
||||
ssl_sess.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
|
||||
ssl_sess.o: ../include/openssl/opensslv.h ../include/openssl/pem.h
|
||||
ssl_sess.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
|
||||
@ -680,8 +722,9 @@ ssl_sess.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h
|
||||
ssl_sess.o: ../include/openssl/safestack.h ../include/openssl/sha.h
|
||||
ssl_sess.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h
|
||||
ssl_sess.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h
|
||||
ssl_sess.o: ../include/openssl/stack.h ../include/openssl/tls1.h
|
||||
ssl_sess.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_locl.h
|
||||
ssl_sess.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
|
||||
ssl_sess.o: ../include/openssl/tls1.h ../include/openssl/x509.h
|
||||
ssl_sess.o: ../include/openssl/x509_vfy.h ssl_locl.h
|
||||
ssl_stat.o: ../include/openssl/asn1.h ../include/openssl/bio.h
|
||||
ssl_stat.o: ../include/openssl/blowfish.h ../include/openssl/bn.h
|
||||
ssl_stat.o: ../include/openssl/buffer.h ../include/openssl/cast.h
|
||||
@ -691,7 +734,8 @@ ssl_stat.o: ../include/openssl/dsa.h ../include/openssl/e_os.h
|
||||
ssl_stat.o: ../include/openssl/e_os2.h ../include/openssl/err.h
|
||||
ssl_stat.o: ../include/openssl/evp.h ../include/openssl/idea.h
|
||||
ssl_stat.o: ../include/openssl/lhash.h ../include/openssl/md2.h
|
||||
ssl_stat.o: ../include/openssl/md5.h ../include/openssl/mdc2.h
|
||||
ssl_stat.o: ../include/openssl/md4.h ../include/openssl/md5.h
|
||||
ssl_stat.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h
|
||||
ssl_stat.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
|
||||
ssl_stat.o: ../include/openssl/opensslv.h ../include/openssl/pem.h
|
||||
ssl_stat.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
|
||||
@ -701,8 +745,8 @@ ssl_stat.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
|
||||
ssl_stat.o: ../include/openssl/sha.h ../include/openssl/ssl.h
|
||||
ssl_stat.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
|
||||
ssl_stat.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
|
||||
ssl_stat.o: ../include/openssl/tls1.h ../include/openssl/x509.h
|
||||
ssl_stat.o: ../include/openssl/x509_vfy.h ssl_locl.h
|
||||
ssl_stat.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
|
||||
ssl_stat.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_locl.h
|
||||
ssl_txt.o: ../include/openssl/asn1.h ../include/openssl/bio.h
|
||||
ssl_txt.o: ../include/openssl/blowfish.h ../include/openssl/bn.h
|
||||
ssl_txt.o: ../include/openssl/buffer.h ../include/openssl/cast.h
|
||||
@ -712,7 +756,8 @@ ssl_txt.o: ../include/openssl/dsa.h ../include/openssl/e_os.h
|
||||
ssl_txt.o: ../include/openssl/e_os2.h ../include/openssl/err.h
|
||||
ssl_txt.o: ../include/openssl/evp.h ../include/openssl/idea.h
|
||||
ssl_txt.o: ../include/openssl/lhash.h ../include/openssl/md2.h
|
||||
ssl_txt.o: ../include/openssl/md5.h ../include/openssl/mdc2.h
|
||||
ssl_txt.o: ../include/openssl/md4.h ../include/openssl/md5.h
|
||||
ssl_txt.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h
|
||||
ssl_txt.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
|
||||
ssl_txt.o: ../include/openssl/opensslv.h ../include/openssl/pem.h
|
||||
ssl_txt.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
|
||||
@ -722,8 +767,8 @@ ssl_txt.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
|
||||
ssl_txt.o: ../include/openssl/sha.h ../include/openssl/ssl.h
|
||||
ssl_txt.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
|
||||
ssl_txt.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
|
||||
ssl_txt.o: ../include/openssl/tls1.h ../include/openssl/x509.h
|
||||
ssl_txt.o: ../include/openssl/x509_vfy.h ssl_locl.h
|
||||
ssl_txt.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
|
||||
ssl_txt.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_locl.h
|
||||
t1_clnt.o: ../include/openssl/asn1.h ../include/openssl/bio.h
|
||||
t1_clnt.o: ../include/openssl/blowfish.h ../include/openssl/bn.h
|
||||
t1_clnt.o: ../include/openssl/buffer.h ../include/openssl/cast.h
|
||||
@ -733,7 +778,8 @@ t1_clnt.o: ../include/openssl/dsa.h ../include/openssl/e_os.h
|
||||
t1_clnt.o: ../include/openssl/e_os2.h ../include/openssl/err.h
|
||||
t1_clnt.o: ../include/openssl/evp.h ../include/openssl/idea.h
|
||||
t1_clnt.o: ../include/openssl/lhash.h ../include/openssl/md2.h
|
||||
t1_clnt.o: ../include/openssl/md5.h ../include/openssl/mdc2.h
|
||||
t1_clnt.o: ../include/openssl/md4.h ../include/openssl/md5.h
|
||||
t1_clnt.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h
|
||||
t1_clnt.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
|
||||
t1_clnt.o: ../include/openssl/opensslv.h ../include/openssl/pem.h
|
||||
t1_clnt.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
|
||||
@ -743,8 +789,9 @@ t1_clnt.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h
|
||||
t1_clnt.o: ../include/openssl/safestack.h ../include/openssl/sha.h
|
||||
t1_clnt.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h
|
||||
t1_clnt.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h
|
||||
t1_clnt.o: ../include/openssl/stack.h ../include/openssl/tls1.h
|
||||
t1_clnt.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_locl.h
|
||||
t1_clnt.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
|
||||
t1_clnt.o: ../include/openssl/tls1.h ../include/openssl/x509.h
|
||||
t1_clnt.o: ../include/openssl/x509_vfy.h ssl_locl.h
|
||||
t1_enc.o: ../include/openssl/asn1.h ../include/openssl/bio.h
|
||||
t1_enc.o: ../include/openssl/blowfish.h ../include/openssl/bn.h
|
||||
t1_enc.o: ../include/openssl/buffer.h ../include/openssl/cast.h
|
||||
@ -754,8 +801,9 @@ t1_enc.o: ../include/openssl/dsa.h ../include/openssl/e_os.h
|
||||
t1_enc.o: ../include/openssl/e_os2.h ../include/openssl/err.h
|
||||
t1_enc.o: ../include/openssl/evp.h ../include/openssl/hmac.h
|
||||
t1_enc.o: ../include/openssl/idea.h ../include/openssl/lhash.h
|
||||
t1_enc.o: ../include/openssl/md2.h ../include/openssl/md5.h
|
||||
t1_enc.o: ../include/openssl/mdc2.h ../include/openssl/objects.h
|
||||
t1_enc.o: ../include/openssl/md2.h ../include/openssl/md4.h
|
||||
t1_enc.o: ../include/openssl/md5.h ../include/openssl/mdc2.h
|
||||
t1_enc.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
|
||||
t1_enc.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
|
||||
t1_enc.o: ../include/openssl/pem.h ../include/openssl/pem2.h
|
||||
t1_enc.o: ../include/openssl/pkcs7.h ../include/openssl/rc2.h
|
||||
@ -764,8 +812,9 @@ t1_enc.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h
|
||||
t1_enc.o: ../include/openssl/safestack.h ../include/openssl/sha.h
|
||||
t1_enc.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h
|
||||
t1_enc.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h
|
||||
t1_enc.o: ../include/openssl/stack.h ../include/openssl/tls1.h
|
||||
t1_enc.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_locl.h
|
||||
t1_enc.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
|
||||
t1_enc.o: ../include/openssl/tls1.h ../include/openssl/x509.h
|
||||
t1_enc.o: ../include/openssl/x509_vfy.h ssl_locl.h
|
||||
t1_lib.o: ../include/openssl/asn1.h ../include/openssl/bio.h
|
||||
t1_lib.o: ../include/openssl/blowfish.h ../include/openssl/bn.h
|
||||
t1_lib.o: ../include/openssl/buffer.h ../include/openssl/cast.h
|
||||
@ -775,7 +824,8 @@ t1_lib.o: ../include/openssl/dsa.h ../include/openssl/e_os.h
|
||||
t1_lib.o: ../include/openssl/e_os2.h ../include/openssl/err.h
|
||||
t1_lib.o: ../include/openssl/evp.h ../include/openssl/idea.h
|
||||
t1_lib.o: ../include/openssl/lhash.h ../include/openssl/md2.h
|
||||
t1_lib.o: ../include/openssl/md5.h ../include/openssl/mdc2.h
|
||||
t1_lib.o: ../include/openssl/md4.h ../include/openssl/md5.h
|
||||
t1_lib.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h
|
||||
t1_lib.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
|
||||
t1_lib.o: ../include/openssl/opensslv.h ../include/openssl/pem.h
|
||||
t1_lib.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
|
||||
@ -785,8 +835,8 @@ t1_lib.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
|
||||
t1_lib.o: ../include/openssl/sha.h ../include/openssl/ssl.h
|
||||
t1_lib.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
|
||||
t1_lib.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
|
||||
t1_lib.o: ../include/openssl/tls1.h ../include/openssl/x509.h
|
||||
t1_lib.o: ../include/openssl/x509_vfy.h ssl_locl.h
|
||||
t1_lib.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
|
||||
t1_lib.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_locl.h
|
||||
t1_meth.o: ../include/openssl/asn1.h ../include/openssl/bio.h
|
||||
t1_meth.o: ../include/openssl/blowfish.h ../include/openssl/bn.h
|
||||
t1_meth.o: ../include/openssl/buffer.h ../include/openssl/cast.h
|
||||
@ -796,7 +846,8 @@ t1_meth.o: ../include/openssl/dsa.h ../include/openssl/e_os.h
|
||||
t1_meth.o: ../include/openssl/e_os2.h ../include/openssl/err.h
|
||||
t1_meth.o: ../include/openssl/evp.h ../include/openssl/idea.h
|
||||
t1_meth.o: ../include/openssl/lhash.h ../include/openssl/md2.h
|
||||
t1_meth.o: ../include/openssl/md5.h ../include/openssl/mdc2.h
|
||||
t1_meth.o: ../include/openssl/md4.h ../include/openssl/md5.h
|
||||
t1_meth.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h
|
||||
t1_meth.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
|
||||
t1_meth.o: ../include/openssl/opensslv.h ../include/openssl/pem.h
|
||||
t1_meth.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
|
||||
@ -806,8 +857,8 @@ t1_meth.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
|
||||
t1_meth.o: ../include/openssl/sha.h ../include/openssl/ssl.h
|
||||
t1_meth.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
|
||||
t1_meth.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
|
||||
t1_meth.o: ../include/openssl/tls1.h ../include/openssl/x509.h
|
||||
t1_meth.o: ../include/openssl/x509_vfy.h ssl_locl.h
|
||||
t1_meth.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
|
||||
t1_meth.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_locl.h
|
||||
t1_srvr.o: ../include/openssl/asn1.h ../include/openssl/bio.h
|
||||
t1_srvr.o: ../include/openssl/blowfish.h ../include/openssl/bn.h
|
||||
t1_srvr.o: ../include/openssl/buffer.h ../include/openssl/cast.h
|
||||
@ -817,7 +868,8 @@ t1_srvr.o: ../include/openssl/dsa.h ../include/openssl/e_os.h
|
||||
t1_srvr.o: ../include/openssl/e_os2.h ../include/openssl/err.h
|
||||
t1_srvr.o: ../include/openssl/evp.h ../include/openssl/idea.h
|
||||
t1_srvr.o: ../include/openssl/lhash.h ../include/openssl/md2.h
|
||||
t1_srvr.o: ../include/openssl/md5.h ../include/openssl/mdc2.h
|
||||
t1_srvr.o: ../include/openssl/md4.h ../include/openssl/md5.h
|
||||
t1_srvr.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h
|
||||
t1_srvr.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
|
||||
t1_srvr.o: ../include/openssl/opensslv.h ../include/openssl/pem.h
|
||||
t1_srvr.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
|
||||
@ -827,5 +879,6 @@ t1_srvr.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h
|
||||
t1_srvr.o: ../include/openssl/safestack.h ../include/openssl/sha.h
|
||||
t1_srvr.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h
|
||||
t1_srvr.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h
|
||||
t1_srvr.o: ../include/openssl/stack.h ../include/openssl/tls1.h
|
||||
t1_srvr.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_locl.h
|
||||
t1_srvr.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
|
||||
t1_srvr.o: ../include/openssl/tls1.h ../include/openssl/x509.h
|
||||
t1_srvr.o: ../include/openssl/x509_vfy.h ssl_locl.h
|
||||
|
@ -405,12 +405,13 @@ static int get_client_master_key(SSL *s)
|
||||
/* bad decrypt */
|
||||
#if 1
|
||||
/* If a bad decrypt, continue with protocol but with a
|
||||
* dud master secret */
|
||||
* random master secret (Bleichenbacher attack) */
|
||||
if ((i < 0) ||
|
||||
((!is_export && (i != EVP_CIPHER_key_length(c)))
|
||||
|| (is_export && ((i != ek) || (s->s2->tmp.clear+i !=
|
||||
EVP_CIPHER_key_length(c))))))
|
||||
{
|
||||
ERR_clear_error();
|
||||
if (is_export)
|
||||
i=ek;
|
||||
else
|
||||
|
@ -356,7 +356,7 @@ int ssl3_enc(SSL *s, int send)
|
||||
if ((s->session == NULL) || (ds == NULL) ||
|
||||
(enc == NULL))
|
||||
{
|
||||
memcpy(rec->data,rec->input,rec->length);
|
||||
memmove(rec->data,rec->input,rec->length);
|
||||
rec->input=rec->data;
|
||||
}
|
||||
else
|
||||
@ -366,7 +366,6 @@ int ssl3_enc(SSL *s, int send)
|
||||
|
||||
/* COMPRESS */
|
||||
|
||||
/* This should be using (bs-1) and bs instead of 7 and 8 */
|
||||
if ((bs != 1) && send)
|
||||
{
|
||||
i=bs-((int)l%bs);
|
||||
@ -376,12 +375,24 @@ int ssl3_enc(SSL *s, int send)
|
||||
rec->length+=i;
|
||||
rec->input[l-1]=(i-1);
|
||||
}
|
||||
|
||||
|
||||
if (!send)
|
||||
{
|
||||
if (l == 0 || l%bs != 0)
|
||||
{
|
||||
SSLerr(SSL_F_SSL3_ENC,SSL_R_BLOCK_CIPHER_PAD_IS_WRONG);
|
||||
ssl3_send_alert(s,SSL3_AL_FATAL,SSL_AD_DECRYPT_ERROR);
|
||||
return(0);
|
||||
}
|
||||
}
|
||||
|
||||
EVP_Cipher(ds,rec->data,rec->input,l);
|
||||
|
||||
if ((bs != 1) && !send)
|
||||
{
|
||||
i=rec->data[l-1]+1;
|
||||
/* SSL 3.0 bounds the number of padding bytes by the block size;
|
||||
* padding bytes (except that last) are arbitrary */
|
||||
if (i > bs)
|
||||
{
|
||||
SSLerr(SSL_F_SSL3_ENC,SSL_R_BLOCK_CIPHER_PAD_IS_WRONG);
|
||||
|
@ -1322,14 +1322,15 @@ static int ssl3_get_client_key_exchange(SSL *s)
|
||||
|
||||
i=RSA_private_decrypt((int)n,p,p,rsa,RSA_PKCS1_PADDING);
|
||||
|
||||
al = -1;
|
||||
|
||||
if (i != SSL_MAX_MASTER_KEY_LENGTH)
|
||||
{
|
||||
al=SSL_AD_DECODE_ERROR;
|
||||
SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,SSL_R_BAD_RSA_DECRYPT);
|
||||
goto f_err;
|
||||
}
|
||||
|
||||
if (!((p[0] == (s->client_version>>8)) && (p[1] == (s->client_version & 0xff))))
|
||||
if ((al == -1) && !((p[0] == (s->client_version>>8)) && (p[1] == (s->client_version & 0xff))))
|
||||
{
|
||||
/* The premaster secret must contain the same version number as the
|
||||
* ClientHello to detect version rollback attacks (strangely, the
|
||||
@ -1347,6 +1348,27 @@ static int ssl3_get_client_key_exchange(SSL *s)
|
||||
}
|
||||
}
|
||||
|
||||
if (al != -1)
|
||||
{
|
||||
#if 0
|
||||
goto f_err;
|
||||
#else
|
||||
/* Some decryption failure -- use random value instead as countermeasure
|
||||
* against Bleichenbacher's attack on PKCS #1 v1.5 RSA padding
|
||||
* (see RFC 2246, section 7.4.7.1).
|
||||
* But note that due to length and protocol version checking, the
|
||||
* attack is impractical anyway (see section 5 in D. Bleichenbacher:
|
||||
* "Chosen Ciphertext Attacks Against Protocols Based on the RSA
|
||||
* Encryption Standard PKCS #1", CRYPTO '98, LNCS 1462, pp. 1-12).
|
||||
*/
|
||||
ERR_clear_error();
|
||||
i = SSL_MAX_MASTER_KEY_LENGTH;
|
||||
p[0] = s->client_version >> 8;
|
||||
p[1] = s->client_version & 0xff;
|
||||
RAND_pseudo_bytes(p+2, i-2); /* should be RAND_bytes, but we cannot work around a failure */
|
||||
#endif
|
||||
}
|
||||
|
||||
s->session->master_key_length=
|
||||
s->method->ssl3_enc->generate_master_secret(s,
|
||||
s->session->master_key,
|
||||
|
@ -420,7 +420,7 @@ int tls1_enc(SSL *s, int send)
|
||||
if ((s->session == NULL) || (ds == NULL) ||
|
||||
(enc == NULL))
|
||||
{
|
||||
memcpy(rec->data,rec->input,rec->length);
|
||||
memmove(rec->data,rec->input,rec->length);
|
||||
rec->input=rec->data;
|
||||
}
|
||||
else
|
||||
@ -447,11 +447,21 @@ int tls1_enc(SSL *s, int send)
|
||||
rec->length+=i;
|
||||
}
|
||||
|
||||
if (!send)
|
||||
{
|
||||
if (l == 0 || l%bs != 0)
|
||||
{
|
||||
SSLerr(SSL_F_TLS1_ENC,SSL_R_BLOCK_CIPHER_PAD_IS_WRONG);
|
||||
ssl3_send_alert(s,SSL3_AL_FATAL,SSL_AD_DECRYPT_ERROR);
|
||||
return(0);
|
||||
}
|
||||
}
|
||||
|
||||
EVP_Cipher(ds,rec->data,rec->input,l);
|
||||
|
||||
if ((bs != 1) && !send)
|
||||
{
|
||||
ii=i=rec->data[l-1];
|
||||
ii=i=rec->data[l-1]; /* padding_length */
|
||||
i++;
|
||||
if (s->options&SSL_OP_TLS_BLOCK_PADDING_BUG)
|
||||
{
|
||||
@ -462,6 +472,8 @@ int tls1_enc(SSL *s, int send)
|
||||
if (s->s3->flags & TLS1_FLAGS_TLS_PADDING_BUG)
|
||||
i--;
|
||||
}
|
||||
/* TLS 1.0 does not bound the number of padding bytes by the block size.
|
||||
* All of them must have value 'padding_length'. */
|
||||
if (i > (int)rec->length)
|
||||
{
|
||||
SSLerr(SSL_F_TLS1_ENC,SSL_R_BLOCK_CIPHER_PAD_IS_WRONG);
|
||||
|
@ -38,6 +38,7 @@ SHA1TEST= sha1test
|
||||
MDC2TEST= mdc2test
|
||||
RMDTEST= rmdtest
|
||||
MD2TEST= md2test
|
||||
MD4TEST= md4test
|
||||
MD5TEST= md5test
|
||||
HMACTEST= hmactest
|
||||
RC2TEST= rc2test
|
||||
@ -53,7 +54,7 @@ METHTEST= methtest
|
||||
SSLTEST= ssltest
|
||||
RSATEST= rsa_test
|
||||
|
||||
EXE= $(BNTEST) $(IDEATEST) $(MD2TEST) $(MD5TEST) $(HMACTEST) \
|
||||
EXE= $(BNTEST) $(IDEATEST) $(MD2TEST) $(MD4TEST) $(MD5TEST) $(HMACTEST) \
|
||||
$(RC2TEST) $(RC4TEST) $(RC5TEST) \
|
||||
$(DESTEST) $(SHATEST) $(SHA1TEST) $(MDC2TEST) $(RMDTEST) \
|
||||
$(RANDTEST) $(DHTEST) \
|
||||
@ -61,12 +62,14 @@ EXE= $(BNTEST) $(IDEATEST) $(MD2TEST) $(MD5TEST) $(HMACTEST) \
|
||||
|
||||
# $(METHTEST)
|
||||
|
||||
OBJ= $(BNTEST).o $(IDEATEST).o $(MD2TEST).o $(MD5TEST).o $(HMACTEST).o \
|
||||
OBJ= $(BNTEST).o $(IDEATEST).o $(MD2TEST).o $(MD4TEST).o $(MD5TEST).o \
|
||||
$(HMACTEST).o \
|
||||
$(RC2TEST).o $(RC4TEST).o $(RC5TEST).o \
|
||||
$(DESTEST).o $(SHATEST).o $(SHA1TEST).o $(MDC2TEST).o $(RMDTEST).o \
|
||||
$(RANDTEST).o $(DHTEST).o $(CASTTEST).o \
|
||||
$(BFTEST).o $(SSLTEST).o $(DSATEST).o $(EXPTEST).o $(RSATEST).o
|
||||
SRC= $(BNTEST).c $(IDEATEST).c $(MD2TEST).c $(MD5TEST).c $(HMACTEST).c \
|
||||
SRC= $(BNTEST).c $(IDEATEST).c $(MD2TEST).c $(MD4TEST).c $(MD5TEST).c \
|
||||
$(HMACTEST).c \
|
||||
$(RC2TEST).c $(RC4TEST).c $(RC5TEST).c \
|
||||
$(DESTEST).c $(SHATEST).c $(SHA1TEST).c $(MDC2TEST).c $(RMDTEST).c \
|
||||
$(RANDTEST).c $(DHTEST).c $(CASTTEST).c \
|
||||
@ -98,7 +101,8 @@ tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests: exe apps \
|
||||
test_des test_idea test_sha test_md5 test_hmac test_md2 test_mdc2 \
|
||||
test_des test_idea test_sha test_md4 test_md5 test_hmac \
|
||||
test_md2 test_mdc2 \
|
||||
test_rmd test_rc2 test_rc4 test_rc5 test_bf test_cast \
|
||||
test_rand test_bn test_enc test_x509 test_rsa test_crl test_sid \
|
||||
test_gen test_req test_pkcs7 test_verify test_dh test_dsa \
|
||||
@ -123,6 +127,9 @@ test_mdc2:
|
||||
test_md5:
|
||||
./$(MD5TEST)
|
||||
|
||||
test_md4:
|
||||
./$(MD4TEST)
|
||||
|
||||
test_hmac:
|
||||
./$(HMACTEST)
|
||||
|
||||
@ -184,7 +191,7 @@ test_bn:
|
||||
@./$(BNTEST) >tmp.bntest
|
||||
@echo quit >>tmp.bntest
|
||||
@echo "running bc"
|
||||
@bc tmp.bntest 2>&1 | $(PERL) -e 'while (<STDIN>) {if (/^test (.*)/) {print STDERR "\nverify $$1";} elsif (!/^0$$/) {die "\nFailed! bc: $$_";} print STDERR "."; $$i++;} print STDERR "\n$$i tests passed\n"'
|
||||
@<tmp.bntest sh -c "`sh ./bctest`" | $(PERL) -e '$$i=0; while (<STDIN>) {if (/^test (.*)/) {print STDERR "\nverify $$1";} elsif (!/^0$$/) {die "\nFailed! bc: $$_";} else {print STDERR "."; $$i++;}} print STDERR "\n$$i tests passed\n"'
|
||||
@echo 'test a^b%c implementations'
|
||||
./$(EXPTEST)
|
||||
|
||||
@ -233,7 +240,7 @@ dclean:
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f .rnd tmp.bntest *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff $(EXE) *.ss log
|
||||
rm -f .rnd tmp.bntest tmp.bctest *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff $(EXE) *.ss log
|
||||
|
||||
$(DLIBSSL):
|
||||
(cd ../ssl; $(MAKE))
|
||||
@ -268,6 +275,9 @@ $(RMDTEST): $(RMDTEST).o $(DLIBCRYPTO)
|
||||
$(MDC2TEST): $(MDC2TEST).o $(DLIBCRYPTO)
|
||||
$(CC) -o $(MDC2TEST) $(CFLAGS) $(MDC2TEST).o $(PEX_LIBS) $(LIBCRYPTO) $(EX_LIBS)
|
||||
|
||||
$(MD4TEST): $(MD4TEST).o $(DLIBCRYPTO)
|
||||
$(CC) -o $(MD4TEST) $(CFLAGS) $(MD4TEST).o $(PEX_LIBS) $(LIBCRYPTO) $(EX_LIBS)
|
||||
|
||||
$(MD5TEST): $(MD5TEST).o $(DLIBCRYPTO)
|
||||
$(CC) -o $(MD5TEST) $(CFLAGS) $(MD5TEST).o $(PEX_LIBS) $(LIBCRYPTO) $(EX_LIBS)
|
||||
|
||||
@ -312,20 +322,23 @@ $(SSLTEST): $(SSLTEST).o $(DLIBSSL) $(DLIBCRYPTO)
|
||||
bftest.o: ../include/openssl/blowfish.h
|
||||
bntest.o: ../include/openssl/asn1.h ../include/openssl/bio.h
|
||||
bntest.o: ../include/openssl/blowfish.h ../include/openssl/bn.h
|
||||
bntest.o: ../include/openssl/cast.h ../include/openssl/crypto.h
|
||||
bntest.o: ../include/openssl/des.h ../include/openssl/dh.h
|
||||
bntest.o: ../include/openssl/dsa.h ../include/openssl/e_os.h
|
||||
bntest.o: ../include/openssl/e_os2.h ../include/openssl/err.h
|
||||
bntest.o: ../include/openssl/evp.h ../include/openssl/idea.h
|
||||
bntest.o: ../include/openssl/md2.h ../include/openssl/md5.h
|
||||
bntest.o: ../include/openssl/mdc2.h ../include/openssl/objects.h
|
||||
bntest.o: ../include/openssl/buffer.h ../include/openssl/cast.h
|
||||
bntest.o: ../include/openssl/crypto.h ../include/openssl/des.h
|
||||
bntest.o: ../include/openssl/dh.h ../include/openssl/dsa.h
|
||||
bntest.o: ../include/openssl/e_os.h ../include/openssl/e_os2.h
|
||||
bntest.o: ../include/openssl/err.h ../include/openssl/evp.h
|
||||
bntest.o: ../include/openssl/idea.h ../include/openssl/lhash.h
|
||||
bntest.o: ../include/openssl/md2.h ../include/openssl/md4.h
|
||||
bntest.o: ../include/openssl/md5.h ../include/openssl/mdc2.h
|
||||
bntest.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
|
||||
bntest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
|
||||
bntest.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h
|
||||
bntest.o: ../include/openssl/rc2.h ../include/openssl/rc4.h
|
||||
bntest.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h
|
||||
bntest.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
|
||||
bntest.o: ../include/openssl/sha.h ../include/openssl/stack.h
|
||||
bntest.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h
|
||||
bntest.o: ../include/openssl/symhacks.h ../include/openssl/x509.h
|
||||
bntest.o: ../include/openssl/x509_vfy.h
|
||||
casttest.o: ../include/openssl/cast.h
|
||||
destest.o: ../include/openssl/des.h ../include/openssl/e_os2.h
|
||||
destest.o: ../include/openssl/opensslconf.h
|
||||
@ -333,18 +346,20 @@ dhtest.o: ../include/openssl/bio.h ../include/openssl/bn.h
|
||||
dhtest.o: ../include/openssl/crypto.h ../include/openssl/dh.h
|
||||
dhtest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
|
||||
dhtest.o: ../include/openssl/rand.h ../include/openssl/safestack.h
|
||||
dhtest.o: ../include/openssl/stack.h
|
||||
dhtest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
|
||||
dsatest.o: ../include/openssl/bio.h ../include/openssl/bn.h
|
||||
dsatest.o: ../include/openssl/crypto.h ../include/openssl/dh.h
|
||||
dsatest.o: ../include/openssl/dsa.h ../include/openssl/err.h
|
||||
dsatest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
|
||||
dsatest.o: ../include/openssl/rand.h ../include/openssl/safestack.h
|
||||
dsatest.o: ../include/openssl/stack.h
|
||||
dsatest.o: ../include/openssl/lhash.h ../include/openssl/opensslconf.h
|
||||
dsatest.o: ../include/openssl/opensslv.h ../include/openssl/rand.h
|
||||
dsatest.o: ../include/openssl/safestack.h ../include/openssl/stack.h
|
||||
dsatest.o: ../include/openssl/symhacks.h
|
||||
exptest.o: ../include/openssl/bio.h ../include/openssl/bn.h
|
||||
exptest.o: ../include/openssl/crypto.h ../include/openssl/err.h
|
||||
exptest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
|
||||
exptest.o: ../include/openssl/rand.h ../include/openssl/safestack.h
|
||||
exptest.o: ../include/openssl/stack.h
|
||||
exptest.o: ../include/openssl/lhash.h ../include/openssl/opensslconf.h
|
||||
exptest.o: ../include/openssl/opensslv.h ../include/openssl/rand.h
|
||||
exptest.o: ../include/openssl/safestack.h ../include/openssl/stack.h
|
||||
exptest.o: ../include/openssl/symhacks.h
|
||||
hmactest.o: ../include/openssl/asn1.h ../include/openssl/bio.h
|
||||
hmactest.o: ../include/openssl/blowfish.h ../include/openssl/bn.h
|
||||
hmactest.o: ../include/openssl/cast.h ../include/openssl/crypto.h
|
||||
@ -352,15 +367,17 @@ hmactest.o: ../include/openssl/des.h ../include/openssl/dh.h
|
||||
hmactest.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h
|
||||
hmactest.o: ../include/openssl/evp.h ../include/openssl/hmac.h
|
||||
hmactest.o: ../include/openssl/idea.h ../include/openssl/md2.h
|
||||
hmactest.o: ../include/openssl/md5.h ../include/openssl/mdc2.h
|
||||
hmactest.o: ../include/openssl/md4.h ../include/openssl/md5.h
|
||||
hmactest.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h
|
||||
hmactest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
|
||||
hmactest.o: ../include/openssl/opensslv.h ../include/openssl/rc2.h
|
||||
hmactest.o: ../include/openssl/rc4.h ../include/openssl/rc5.h
|
||||
hmactest.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h
|
||||
hmactest.o: ../include/openssl/safestack.h ../include/openssl/sha.h
|
||||
hmactest.o: ../include/openssl/stack.h
|
||||
hmactest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
|
||||
ideatest.o: ../include/openssl/idea.h ../include/openssl/opensslconf.h
|
||||
md2test.o: ../include/openssl/md2.h ../include/openssl/opensslconf.h
|
||||
md4test.o: ../include/openssl/md4.h
|
||||
md5test.o: ../include/openssl/md5.h
|
||||
mdc2test.o: ../include/openssl/des.h ../include/openssl/e_os2.h
|
||||
mdc2test.o: ../include/openssl/mdc2.h ../include/openssl/opensslconf.h
|
||||
@ -369,32 +386,35 @@ rc2test.o: ../include/openssl/opensslconf.h ../include/openssl/rc2.h
|
||||
rc4test.o: ../include/openssl/opensslconf.h ../include/openssl/rc4.h
|
||||
rc5test.o: ../include/openssl/rc5.h
|
||||
rmdtest.o: ../include/openssl/ripemd.h
|
||||
rsa_test.o: ../include/openssl/bn.h ../include/openssl/crypto.h
|
||||
rsa_test.o: ../include/openssl/e_os.h ../include/openssl/e_os2.h
|
||||
rsa_test.o: ../include/openssl/err.h ../include/openssl/opensslconf.h
|
||||
rsa_test.o: ../include/openssl/bio.h ../include/openssl/bn.h
|
||||
rsa_test.o: ../include/openssl/crypto.h ../include/openssl/e_os.h
|
||||
rsa_test.o: ../include/openssl/e_os2.h ../include/openssl/err.h
|
||||
rsa_test.o: ../include/openssl/lhash.h ../include/openssl/opensslconf.h
|
||||
rsa_test.o: ../include/openssl/opensslv.h ../include/openssl/rand.h
|
||||
rsa_test.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
|
||||
rsa_test.o: ../include/openssl/stack.h
|
||||
rsa_test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
|
||||
sha1test.o: ../include/openssl/sha.h
|
||||
shatest.o: ../include/openssl/sha.h
|
||||
ssltest.o: ../include/openssl/asn1.h ../include/openssl/bio.h
|
||||
ssltest.o: ../include/openssl/blowfish.h ../include/openssl/bn.h
|
||||
ssltest.o: ../include/openssl/buffer.h ../include/openssl/cast.h
|
||||
ssltest.o: ../include/openssl/crypto.h ../include/openssl/des.h
|
||||
ssltest.o: ../include/openssl/dh.h ../include/openssl/dsa.h
|
||||
ssltest.o: ../include/openssl/e_os.h ../include/openssl/e_os2.h
|
||||
ssltest.o: ../include/openssl/err.h ../include/openssl/evp.h
|
||||
ssltest.o: ../include/openssl/idea.h ../include/openssl/lhash.h
|
||||
ssltest.o: ../include/openssl/md2.h ../include/openssl/md5.h
|
||||
ssltest.o: ../include/openssl/mdc2.h ../include/openssl/objects.h
|
||||
ssltest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
|
||||
ssltest.o: ../include/openssl/pem.h ../include/openssl/pem2.h
|
||||
ssltest.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h
|
||||
ssltest.o: ../include/openssl/rc2.h ../include/openssl/rc4.h
|
||||
ssltest.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h
|
||||
ssltest.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
|
||||
ssltest.o: ../include/openssl/sha.h ../include/openssl/ssl.h
|
||||
ssltest.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
|
||||
ssltest.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
|
||||
ssltest.o: ../include/openssl/comp.h ../include/openssl/crypto.h
|
||||
ssltest.o: ../include/openssl/des.h ../include/openssl/dh.h
|
||||
ssltest.o: ../include/openssl/dsa.h ../include/openssl/e_os.h
|
||||
ssltest.o: ../include/openssl/e_os2.h ../include/openssl/err.h
|
||||
ssltest.o: ../include/openssl/evp.h ../include/openssl/idea.h
|
||||
ssltest.o: ../include/openssl/lhash.h ../include/openssl/md2.h
|
||||
ssltest.o: ../include/openssl/md4.h ../include/openssl/md5.h
|
||||
ssltest.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h
|
||||
ssltest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
|
||||
ssltest.o: ../include/openssl/opensslv.h ../include/openssl/pem.h
|
||||
ssltest.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
|
||||
ssltest.o: ../include/openssl/rand.h ../include/openssl/rc2.h
|
||||
ssltest.o: ../include/openssl/rc4.h ../include/openssl/rc5.h
|
||||
ssltest.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h
|
||||
ssltest.o: ../include/openssl/safestack.h ../include/openssl/sha.h
|
||||
ssltest.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h
|
||||
ssltest.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h
|
||||
ssltest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
|
||||
ssltest.o: ../include/openssl/tls1.h ../include/openssl/x509.h
|
||||
ssltest.o: ../include/openssl/x509_vfy.h
|
||||
|
@ -191,7 +191,7 @@ test_bn:
|
||||
@./$(BNTEST) >tmp.bntest
|
||||
@echo quit >>tmp.bntest
|
||||
@echo "running bc"
|
||||
@<tmp.bntest sh -c "`sh ./bctest || true`" | $(PERL) -e '$$i=0; while (<STDIN>) {if (/^test (.*)/) {print STDERR "\nverify $$1";} elsif (!/^0$$/) {die "\nFailed! bc: $$_";} else {print STDERR "."; $$i++;}} print STDERR "\n$$i tests passed\n"'
|
||||
@<tmp.bntest sh -c "`sh ./bctest ignore`" | $(PERL) -e '$$i=0; while (<STDIN>) {if (/^test (.*)/) {print STDERR "\nverify $$1";} elsif (!/^0$$/) {die "\nFailed! bc: $$_";} else {print STDERR "."; $$i++;}} print STDERR "\n$$i tests passed\n"'
|
||||
@echo 'test a^b%c implementations'
|
||||
./$(EXPTEST)
|
||||
|
||||
|
@ -12,10 +12,22 @@
|
||||
|
||||
|
||||
IFS=:
|
||||
for dir in $PATH; do
|
||||
bc="$dir/bc"
|
||||
try_without_dir=true
|
||||
# First we try "bc", then "$dir/bc" for each item in $PATH.
|
||||
for dir in dummy:$PATH; do
|
||||
if [ "$try_without_dir" = true ]; then
|
||||
# first iteration
|
||||
bc=bc
|
||||
try_without_dir=false
|
||||
else
|
||||
# second and later iterations
|
||||
bc="$dir/bc"
|
||||
if [ ! -f "$bc" ]; then # '-x' is not available on Ultrix
|
||||
bc=''
|
||||
fi
|
||||
fi
|
||||
|
||||
if [ -x "$bc" -a ! -d "$bc" ]; then
|
||||
if [ ! "$bc" = '' ]; then
|
||||
failure=none
|
||||
|
||||
|
||||
@ -92,5 +104,8 @@ EOF
|
||||
done
|
||||
|
||||
echo "No working bc found. Consider installing GNU bc." >&2
|
||||
echo "cat >/dev/null"
|
||||
if [ "$1" = ignore ]; then
|
||||
echo "cat >/dev/null"
|
||||
exit 0
|
||||
fi
|
||||
exit 1
|
||||
|
Loading…
Reference in New Issue
Block a user