Remove references to RSAref. The glue library is but a memory to fade
away now...
This commit is contained in:
parent
7f7b8d6871
commit
ccb9643f02
25 changed files with 74 additions and 63 deletions
3
CHANGES
3
CHANGES
|
@ -4,6 +4,9 @@
|
|||
|
||||
Changes between 0.9.6 and 0.9.7 [xx XXX 2000]
|
||||
|
||||
*) Remove all references to RSAref, since there's no more need for it.
|
||||
[Richard Levitte]
|
||||
|
||||
*) Increase BN_CTX_NUM (the number of BIGNUMs in a BN_CTX) to 16.
|
||||
The previous value, 12, was not always sufficient for BN_mod_exp().
|
||||
[Bodo Moeller]
|
||||
|
|
|
@ -10,7 +10,7 @@ use strict;
|
|||
|
||||
# see INSTALL for instructions.
|
||||
|
||||
my $usage="Usage: Configure [no-<cipher> ...] [-Dxxx] [-lxxx] [-Lxxx] [-fxxx] [-Kxxx] [no-hw-xxx|no-hw] [rsaref] [no-threads] [no-asm] [no-dso] [386] [--prefix=DIR] [--openssldir=OPENSSLDIR] os/compiler[:flags]\n";
|
||||
my $usage="Usage: Configure [no-<cipher> ...] [-Dxxx] [-lxxx] [-Lxxx] [-fxxx] [-Kxxx] [no-hw-xxx|no-hw] [no-threads] [no-asm] [no-dso] [386] [--prefix=DIR] [--openssldir=OPENSSLDIR] os/compiler[:flags]\n";
|
||||
|
||||
# Options:
|
||||
#
|
||||
|
@ -28,7 +28,6 @@ my $usage="Usage: Configure [no-<cipher> ...] [-Dxxx] [-lxxx] [-Lxxx] [-fxxx] [-
|
|||
# are always compiled but return NULL if the hardware
|
||||
# support isn't compiled.
|
||||
# no-hw do not compile support for any crypto hardware.
|
||||
# rsaref use RSAref
|
||||
# [no-]threads [don't] try to create a library that is suitable for
|
||||
# multithreaded applications (default is "threads" if we
|
||||
# know how to do it)
|
||||
|
@ -564,9 +563,9 @@ PROCESS_ARGS:
|
|||
{ $processor=386; }
|
||||
elsif (/^rsaref$/)
|
||||
{
|
||||
$libs.= "-lRSAglue -lrsaref ";
|
||||
$flags.= "-DRSAref ";
|
||||
$openssl_other_defines .= "#define RSAref\n";
|
||||
# No RSAref support any more since it's not needed.
|
||||
# The check for the option is there so scripts aren't
|
||||
# broken
|
||||
}
|
||||
elsif (/^[-+]/)
|
||||
{
|
||||
|
|
3
INSTALL
3
INSTALL
|
@ -43,9 +43,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.
|
||||
|
||||
|
|
|
@ -24,7 +24,6 @@ INSTALLTOP=/usr/local/ssl
|
|||
# Do not edit this manually. Use Configure --openssldir=DIR do change this!
|
||||
OPENSSLDIR=/usr/local/ssl
|
||||
|
||||
# RSAref - Define if we are to link with RSAref.
|
||||
# NO_IDEA - Define to build without the IDEA algorithm
|
||||
# NO_RC4 - Define to build without the RC4 algorithm
|
||||
# NO_RC2 - Define to build without the RC2 algorithm
|
||||
|
@ -154,7 +153,7 @@ RMD160_ASM_OBJ= asm/rm86-out.o
|
|||
# we might set SHLIB_MARK to '$(SHARED_LIBS)'.
|
||||
SHLIB_MARK=
|
||||
|
||||
DIRS= crypto ssl rsaref $(SHLIB_MARK) apps test tools
|
||||
DIRS= crypto ssl $(SHLIB_MARK) apps test tools
|
||||
SHLIBDIRS= crypto ssl
|
||||
|
||||
# dirs in crypto to build
|
||||
|
|
24
TABLE
24
TABLE
|
@ -1160,7 +1160,7 @@ $cc = cc
|
|||
$cflags = -DB_ENDIAN -DBN_DIV2W -Ae +ESlit +O2 -z
|
||||
$unistd =
|
||||
$thread_cflag = (unknown)
|
||||
$lflags = -ldld
|
||||
$lflags = -Wl,+s -ldld
|
||||
$bn_ops = DES_PTR DES_UNROLL DES_RISC1
|
||||
$bn_obj =
|
||||
$des_obj =
|
||||
|
@ -1181,7 +1181,7 @@ $cc = gcc
|
|||
$cflags = -DB_ENDIAN -DBN_DIV2W -O3
|
||||
$unistd =
|
||||
$thread_cflag = (unknown)
|
||||
$lflags = -ldld
|
||||
$lflags = -Wl,+s -ldld
|
||||
$bn_ops = DES_PTR DES_UNROLL DES_RISC1
|
||||
$bn_obj =
|
||||
$des_obj =
|
||||
|
@ -1202,7 +1202,7 @@ $cc = cc
|
|||
$cflags = -DB_ENDIAN -DBN_DIV2W -DMD32_XARRAY -Ae +ESlit +O3 -z
|
||||
$unistd =
|
||||
$thread_cflag = (unknown)
|
||||
$lflags = -ldld
|
||||
$lflags = -Wl,+s -ldld
|
||||
$bn_ops = BN_LLONG DES_PTR DES_UNROLL DES_RISC1
|
||||
$bn_obj =
|
||||
$des_obj =
|
||||
|
@ -1223,7 +1223,7 @@ $cc = gcc
|
|||
$cflags = -DB_ENDIAN -DBN_DIV2W -O3
|
||||
$unistd =
|
||||
$thread_cflag = (unknown)
|
||||
$lflags = -ldld
|
||||
$lflags = -Wl,+s -ldld
|
||||
$bn_ops = BN_LLONG DES_PTR DES_UNROLL DES_RISC1
|
||||
$bn_obj =
|
||||
$des_obj =
|
||||
|
@ -1244,7 +1244,7 @@ $cc = cc
|
|||
$cflags = +O3 +Optrs_strongly_typed +Olibcalls -Ae +ESlit -DB_ENDIAN -DBN_DIV2W -DMD32_XARRAY
|
||||
$unistd =
|
||||
$thread_cflag = -D_REENTRANT
|
||||
$lflags = -ldld
|
||||
$lflags = -Wl,+s -ldld
|
||||
$bn_ops = MD2_CHAR RC4_INDEX RC4_CHAR DES_UNROLL DES_RISC1 DES_INT
|
||||
$bn_obj =
|
||||
$des_obj =
|
||||
|
@ -1286,7 +1286,7 @@ $cc = gcc
|
|||
$cflags = -O3 -DB_ENDIAN -DBN_DIV2W
|
||||
$unistd =
|
||||
$thread_cflag =
|
||||
$lflags = -ldld
|
||||
$lflags = -Wl,+s -ldld
|
||||
$bn_ops = BN_LLONG DES_PTR DES_UNROLL DES_RISC1
|
||||
$bn_obj =
|
||||
$des_obj =
|
||||
|
@ -1307,7 +1307,7 @@ $cc = cc
|
|||
$cflags = +DA1.1 +DS1.1 +O3 +Optrs_strongly_typed +Olibcalls -Ae +ESlit -DB_ENDIAN -DMD32_XARRAY
|
||||
$unistd =
|
||||
$thread_cflag = -D_REENTRANT
|
||||
$lflags = -ldld
|
||||
$lflags = -Wl,+s -ldld
|
||||
$bn_ops = MD2_CHAR RC4_INDEX RC4_CHAR DES_UNROLL DES_RISC1 DES_INT
|
||||
$bn_obj =
|
||||
$des_obj =
|
||||
|
@ -1328,7 +1328,7 @@ $cc = cc
|
|||
$cflags = +DA2.0 +DS2.0 +O3 +Optrs_strongly_typed +Olibcalls -Ae +ESlit -DB_ENDIAN -DMD32_XARRAY
|
||||
$unistd =
|
||||
$thread_cflag = -D_REENTRANT
|
||||
$lflags = -ldld
|
||||
$lflags = -Wl,+s -ldld
|
||||
$bn_ops = SIXTY_FOUR_BIT MD2_CHAR RC4_INDEX RC4_CHAR DES_UNROLL DES_RISC1 DES_INT
|
||||
$bn_obj = asm/pa-risc2.o
|
||||
$des_obj =
|
||||
|
@ -1349,7 +1349,7 @@ $cc = cc
|
|||
$cflags = -DB_ENDIAN -DBN_DIV2W -Ae +ESlit +O2 -z
|
||||
$unistd =
|
||||
$thread_cflag = -D_REENTRANT
|
||||
$lflags = -ldld
|
||||
$lflags = -Wl,+s -ldld
|
||||
$bn_ops = BN_LLONG DES_PTR DES_UNROLL DES_RISC1
|
||||
$bn_obj =
|
||||
$des_obj =
|
||||
|
@ -1370,7 +1370,7 @@ $cc = gcc
|
|||
$cflags = -DB_ENDIAN -DBN_DIV2W -O3
|
||||
$unistd =
|
||||
$thread_cflag = -D_REENTRANT
|
||||
$lflags = -ldld
|
||||
$lflags = -Wl,+s -ldld
|
||||
$bn_ops = DES_PTR DES_UNROLL DES_RISC1
|
||||
$bn_obj =
|
||||
$des_obj =
|
||||
|
@ -1391,7 +1391,7 @@ $cc = cc
|
|||
$cflags = -DB_ENDIAN -DBN_DIV2W -DMD32_XARRAY -Ae +ESlit +O3 -z
|
||||
$unistd =
|
||||
$thread_cflag = -D_REENTRANT
|
||||
$lflags = -ldld
|
||||
$lflags = -Wl,+s -ldld
|
||||
$bn_ops = BN_LLONG DES_PTR DES_UNROLL DES_RISC1
|
||||
$bn_obj =
|
||||
$des_obj =
|
||||
|
@ -1412,7 +1412,7 @@ $cc = gcc
|
|||
$cflags = -DB_ENDIAN -DBN_DIV2W -O3
|
||||
$unistd =
|
||||
$thread_cflag = -D_REENTRANT
|
||||
$lflags = -ldld
|
||||
$lflags = -Wl,+s -ldld
|
||||
$bn_ops = BN_LLONG DES_PTR DES_UNROLL DES_RISC1
|
||||
$bn_obj =
|
||||
$des_obj =
|
||||
|
|
|
@ -581,6 +581,7 @@ $ CHECK_OPTIONS:
|
|||
$!
|
||||
$! Check To See If P1 Is Blank.
|
||||
$!
|
||||
$ P1 = "NORSAREF"
|
||||
$ IF (P1.EQS."NORSAREF")
|
||||
$ THEN
|
||||
$!
|
||||
|
|
|
@ -547,7 +547,7 @@ int MAIN(int argc, char **argv)
|
|||
else
|
||||
#endif
|
||||
#ifndef NO_RSA
|
||||
#ifdef RSAref
|
||||
#if 0 /* was: #ifdef RSAref */
|
||||
if (strcmp(*argv,"rsaref") == 0)
|
||||
{
|
||||
RSA_set_default_openssl_method(RSA_PKCS1_RSAref());
|
||||
|
|
|
@ -896,6 +896,7 @@ $ ENDIF
|
|||
$!
|
||||
$! Check To See If P2 Is Blank.
|
||||
$!
|
||||
$ P2 = "NORSAREF"
|
||||
$ IF (P2.EQS."NORSAREF")
|
||||
$ THEN
|
||||
$!
|
||||
|
|
|
@ -80,6 +80,26 @@ clean:
|
|||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
engine_all.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
engine_all.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h
|
||||
engine_all.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h
|
||||
engine_all.o: ../../include/openssl/des.h ../../include/openssl/dh.h
|
||||
engine_all.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
|
||||
engine_all.o: ../../include/openssl/engine.h ../../include/openssl/err.h
|
||||
engine_all.o: ../../include/openssl/evp.h ../../include/openssl/idea.h
|
||||
engine_all.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h
|
||||
engine_all.o: ../../include/openssl/md4.h ../../include/openssl/md5.h
|
||||
engine_all.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h
|
||||
engine_all.o: ../../include/openssl/objects.h
|
||||
engine_all.o: ../../include/openssl/opensslconf.h
|
||||
engine_all.o: ../../include/openssl/opensslv.h ../../include/openssl/rand.h
|
||||
engine_all.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
|
||||
engine_all.o: ../../include/openssl/rc5.h
|
||||
engine_all.o: ../../include/openssl/rijndael-alg-fst.h
|
||||
engine_all.o: ../../include/openssl/rijndael.h ../../include/openssl/ripemd.h
|
||||
engine_all.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
engine_all.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
engine_all.o: ../../include/openssl/symhacks.h engine_int.h
|
||||
engine_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
engine_err.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h
|
||||
engine_err.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h
|
||||
|
|
|
@ -64,7 +64,7 @@
|
|||
#ifndef NO_RSA
|
||||
#include <openssl/rsa.h>
|
||||
#endif
|
||||
#ifdef RSAref
|
||||
#if 0 /* was: #ifdef RSAref */
|
||||
#include <openssl/rsaref.h>
|
||||
#endif
|
||||
#ifndef NO_DH
|
||||
|
@ -98,7 +98,7 @@ void ERR_load_crypto_strings(void)
|
|||
ERR_load_BIO_strings();
|
||||
ERR_load_CONF_strings();
|
||||
#ifndef NO_RSA
|
||||
#ifdef RSAref
|
||||
#if 0 /* was: #ifdef RSAref */
|
||||
ERR_load_RSAREF_strings();
|
||||
#else
|
||||
ERR_load_RSA_strings();
|
||||
|
|
|
@ -20,7 +20,6 @@ L CONF crypto/conf/conf.h crypto/conf/conf_err.c
|
|||
#L PROXY crypto/proxy/proxy.h crypto/proxy/proxy_err.c
|
||||
L PKCS7 crypto/pkcs7/pkcs7.h crypto/pkcs7/pkcs7err.c
|
||||
L PKCS12 crypto/pkcs12/pkcs12.h crypto/pkcs12/pk12err.c
|
||||
L RSAREF rsaref/rsaref.h rsaref/rsar_err.c
|
||||
L SSL ssl/ssl.h ssl/ssl_err.c
|
||||
L COMP crypto/comp/comp.h crypto/comp/comp_err.c
|
||||
L RAND crypto/rand/rand.h crypto/rand/rand_err.c
|
||||
|
|
|
@ -101,7 +101,7 @@ const RSA_METHOD *RSA_get_default_openssl_method(void)
|
|||
#ifdef RSA_NULL
|
||||
default_RSA_meth=RSA_null_method();
|
||||
#else
|
||||
#ifdef RSAref
|
||||
#if 0 /* was: #ifdef RSAref
|
||||
default_RSA_meth=RSA_PKCS1_RSAref();
|
||||
#else
|
||||
default_RSA_meth=RSA_PKCS1_SSLeay();
|
||||
|
|
|
@ -74,10 +74,6 @@ SSL, PKCS #1 v2.0
|
|||
|
||||
L<err(3)|err(3)>, L<rand(3)|rand(3)>, L<rsa(3)|rsa(3)>, L<RSA_size(3)|RSA_size(3)>
|
||||
|
||||
=head1 NOTES
|
||||
|
||||
The L<RSA_PKCS1_RSAref(3)|RSA_PKCS1_RSAref(3)> method supports only the RSA_PKCS1_PADDING mode.
|
||||
|
||||
=head1 HISTORY
|
||||
|
||||
The B<padding> argument was added in SSLeay 0.8. RSA_NO_PADDING is
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
=head1 NAME
|
||||
|
||||
RSA_set_default_method, RSA_get_default_method, RSA_set_method,
|
||||
RSA_get_method, RSA_PKCS1_SSLeay, RSA_PKCS1_RSAref,
|
||||
RSA_get_method, RSA_PKCS1_SSLeay,
|
||||
RSA_null_method, RSA_flags, RSA_new_method - select RSA method
|
||||
|
||||
=head1 SYNOPSIS
|
||||
|
@ -21,8 +21,6 @@ RSA_null_method, RSA_flags, RSA_new_method - select RSA method
|
|||
|
||||
RSA_METHOD *RSA_PKCS1_SSLeay(void);
|
||||
|
||||
RSA_METHOD *RSA_PKCS1_RSAref(void);
|
||||
|
||||
RSA_METHOD *RSA_null_method(void);
|
||||
|
||||
int RSA_flags(RSA *rsa);
|
||||
|
@ -35,17 +33,8 @@ An B<RSA_METHOD> specifies the functions that OpenSSL uses for RSA
|
|||
operations. By modifying the method, alternative implementations
|
||||
such as hardware accelerators may be used.
|
||||
|
||||
Initially, the default is to use the OpenSSL internal implementation,
|
||||
unless OpenSSL was configured with the C<rsaref> or C<-DRSA_NULL>
|
||||
options. RSA_PKCS1_SSLeay() returns a pointer to that method.
|
||||
|
||||
RSA_PKCS1_RSAref() returns a pointer to a method that uses the RSAref
|
||||
library. This is the default method in the C<rsaref> configuration;
|
||||
the function is not available in other configurations.
|
||||
RSA_null_method() returns a pointer to a method that does not support
|
||||
the RSA transformation. It is the default if OpenSSL is compiled with
|
||||
C<-DRSA_NULL>. These methods may be useful in the USA because of a
|
||||
patent on the RSA cryptosystem.
|
||||
Initially, the default is to use the OpenSSL internal implementation.
|
||||
RSA_PKCS1_SSLeay() returns a pointer to that method.
|
||||
|
||||
RSA_set_default_openssl_method() makes B<meth> the default method for all B<RSA>
|
||||
structures created later. B<NB:> This is true only whilst the default engine
|
||||
|
@ -132,9 +121,8 @@ the default engine for RSA operations is used.
|
|||
|
||||
=head1 RETURN VALUES
|
||||
|
||||
RSA_PKCS1_SSLeay(), RSA_PKCS1_RSAref(), RSA_PKCS1_null_method(),
|
||||
RSA_get_default_openssl_method() and RSA_get_method() return pointers to
|
||||
the respective RSA_METHODs.
|
||||
RSA_PKCS1_SSLeay(), RSA_PKCS1_null_method(), RSA_get_default_openssl_method()
|
||||
and RSA_get_method() return pointers to the respective RSA_METHODs.
|
||||
|
||||
RSA_set_default_openssl_method() returns no value.
|
||||
|
||||
|
|
|
@ -37,7 +37,6 @@ rsa - RSA public key cryptosystem
|
|||
int RSA_set_method(RSA *rsa, ENGINE *engine);
|
||||
RSA_METHOD *RSA_get_method(RSA *rsa);
|
||||
RSA_METHOD *RSA_PKCS1_SSLeay(void);
|
||||
RSA_METHOD *RSA_PKCS1_RSAref(void);
|
||||
RSA_METHOD *RSA_null_method(void);
|
||||
int RSA_flags(RSA *rsa);
|
||||
RSA *RSA_new_method(ENGINE *engine);
|
||||
|
|
|
@ -425,8 +425,8 @@ $ LOOP_SDIRS_END:
|
|||
$!
|
||||
$! Copy All The ".H" Files From The [.RSAREF] Directory.
|
||||
$!
|
||||
$ EXHEADER := rsaref.h
|
||||
$ COPY SYS$DISK:[.RSAREF]'EXHEADER' SYS$DISK:[.INCLUDE.OPENSSL]
|
||||
$! EXHEADER := rsaref.h
|
||||
$! COPY SYS$DISK:[.RSAREF]'EXHEADER' SYS$DISK:[.INCLUDE.OPENSSL]
|
||||
$!
|
||||
$! Copy All The ".H" Files From The [.SSL] Directory.
|
||||
$!
|
||||
|
@ -473,6 +473,9 @@ $!
|
|||
$! Build The [.xxx.EXE.RSAREF]LIBRSAGLUE Library.
|
||||
$!
|
||||
$ RSAREF:
|
||||
$ WRITE SYS$OUTPUT ""
|
||||
$ WRITE SYS$OUTPUT "RSAref glue library not built, since it's no longer needed"
|
||||
$ RETURN
|
||||
$!
|
||||
$! Tell The User What We Are Doing.
|
||||
$!
|
||||
|
@ -648,7 +651,6 @@ $ WRITE SYS$OUTPUT " CONFIG : Just build the [.CRYPTO]OPENSSLCONF.H fi
|
|||
$ WRITE SYS$OUTPUT " BUILDINF : Just build the [.CRYPTO]BUILDINF.H file."
|
||||
$ WRITE SYS$OUTPUT " SOFTLINKS: Just Fix The Unix soft links."
|
||||
$ WRITE SYS$OUTPUT " BUILDALL : Same as ALL, except CONFIG, BUILDINF and SOFTILNKS aren't done."
|
||||
$ WRITE SYS$OUTPUT " RSAREF : To Build Just The [.xxx.EXE.RSAREF]LIBRSAGLUE.OLB Library."
|
||||
$ WRITE SYS$OUTPUT " CRYPTO : To Build Just The [.xxx.EXE.CRYPTO]LIBCRYPTO.OLB Library."
|
||||
$ WRITE SYS$OUTPUT " CRYPTO/x : To Build Just The x Part Of The"
|
||||
$ WRITE SYS$OUTPUT " [.xxx.EXE.CRYPTO]LIBCRYPTO.OLB Library."
|
||||
|
@ -677,6 +679,7 @@ $ ENDIF
|
|||
$!
|
||||
$! Check To See If P2 Is Blank.
|
||||
$!
|
||||
$ P2 = "NORSAREF"
|
||||
$ IF (P2.EQS."NORSAREF")
|
||||
$ THEN
|
||||
$!
|
||||
|
|
|
@ -109,9 +109,9 @@ for x in $RPM_BUILD_ROOT/usr/man/man*/*
|
|||
do mv ${x} ${x}ssl
|
||||
done
|
||||
|
||||
# Install RSAref stuff
|
||||
install -m644 rsaref/rsaref.h $RPM_BUILD_ROOT/usr/include/openssl
|
||||
install -m644 libRSAglue.a $RPM_BUILD_ROOT/usr/lib
|
||||
## Install RSAref stuff
|
||||
#install -m644 rsaref/rsaref.h $RPM_BUILD_ROOT/usr/include/openssl
|
||||
#install -m644 libRSAglue.a $RPM_BUILD_ROOT/usr/lib
|
||||
|
||||
# Make backwards-compatibility symlink to ssleay
|
||||
ln -sf /usr/bin/openssl $RPM_BUILD_ROOT/usr/bin/ssleay
|
||||
|
|
|
@ -647,6 +647,7 @@ $ ENDIF
|
|||
$!
|
||||
$! Check To See If P2 Is Blank.
|
||||
$!
|
||||
$ p2 = "NORSAREF"
|
||||
$ IF (P2.EQS."NORSAREF")
|
||||
$ THEN
|
||||
$!
|
||||
|
|
|
@ -514,6 +514,7 @@ $ CHECK_OPTIONS:
|
|||
$!
|
||||
$! Check To See If P1 Is Blank.
|
||||
$!
|
||||
$ P1 = "NORSAREF"
|
||||
$ IF (P1.EQS."NORSAREF")
|
||||
$ THEN
|
||||
$!
|
||||
|
|
|
@ -2044,3 +2044,9 @@ d2i_OCSP_SIGNATURE 2632 EXIST::FUNCTION:
|
|||
X509_ocspid_print 2633 EXIST::FUNCTION:
|
||||
OCSP_request_verify 2634 EXIST::FUNCTION:
|
||||
i2d_OCSP_REQUEST 2635 EXIST::FUNCTION:
|
||||
ENGINE_load_chil 2636 EXIST::FUNCTION:
|
||||
ENGINE_load_cswift 2637 EXIST::FUNCTION:
|
||||
ENGINE_load_builtin_engines 2638 EXIST::FUNCTION:
|
||||
bn_dup_expand 2639 EXIST::FUNCTION:
|
||||
ENGINE_load_nuron 2640 EXIST::FUNCTION:
|
||||
ENGINE_load_atalla 2641 EXIST::FUNCTION:
|
||||
|
|
|
@ -68,7 +68,6 @@ and [options] can be one of
|
|||
debug - Debug build
|
||||
profile - Profiling build
|
||||
gcc - Use Gcc (unix)
|
||||
rsaref - Build to require RSAref
|
||||
|
||||
Values that can be set
|
||||
TMP=tmpdir OUT=outdir SRC=srcdir BIN=binpath INC=header-outdir CC=C-compiler
|
||||
|
@ -218,7 +217,7 @@ $cflags.=" -DNO_SOCK" if $no_sock;
|
|||
$cflags.=" -DNO_SSL2" if $no_ssl2;
|
||||
$cflags.=" -DNO_SSL3" if $no_ssl3;
|
||||
$cflags.=" -DNO_ERR" if $no_err;
|
||||
$cflags.=" -DRSAref" if $rsaref ne "";
|
||||
#$cflags.=" -DRSAref" if $rsaref ne "";
|
||||
|
||||
## if ($unix)
|
||||
## { $cflags="$c_flags" if ($c_flags ne ""); }
|
||||
|
@ -885,7 +884,7 @@ sub read_options
|
|||
$no_md2=$no_sha=$no_mdc2=$no_dsa=$no_dh=1;
|
||||
$no_ssl2=$no_err=$no_rmd160=$no_rc5=1; }
|
||||
|
||||
elsif (/^rsaref$/) { $rsaref=1; }
|
||||
elsif (/^rsaref$/) { }
|
||||
elsif (/^gcc$/) { $gcc=1; }
|
||||
elsif (/^debug$/) { $debug=1; }
|
||||
elsif (/^profile$/) { $profile=1; }
|
||||
|
|
|
@ -103,7 +103,7 @@ foreach (@ARGV, split(/ /, $options))
|
|||
$NT = 1;
|
||||
}
|
||||
$VMS=1 if $_ eq "VMS";
|
||||
$rsaref=1 if $_ eq "rsaref";
|
||||
#$rsaref=1 if $_ eq "rsaref";
|
||||
|
||||
$do_ssl=1 if $_ eq "ssleay";
|
||||
$do_ssl=1 if $_ eq "ssl";
|
||||
|
@ -147,7 +147,7 @@ if ($W16) {
|
|||
|
||||
if (!$do_ssl && !$do_crypto)
|
||||
{
|
||||
print STDERR "usage: $0 ( ssl | crypto ) [ 16 | 32 | NT ] [rsaref]\n";
|
||||
print STDERR "usage: $0 ( ssl | crypto ) [ 16 | 32 | NT ]\n";
|
||||
exit(1);
|
||||
}
|
||||
|
||||
|
|
|
@ -38,7 +38,7 @@ while (@ARGV) {
|
|||
}
|
||||
|
||||
if($recurse) {
|
||||
@source = (<crypto/*.c>, <crypto/*/*.c>, <rsaref/*.c>, <ssl/*.c>);
|
||||
@source = (<crypto/*.c>, <crypto/*/*.c>, <ssl/*.c>);
|
||||
} else {
|
||||
@source = @ARGV;
|
||||
}
|
||||
|
|
|
@ -48,7 +48,6 @@ my @dirs = (
|
|||
"crypto/engine",
|
||||
"crypto/ocsp",
|
||||
"ssl",
|
||||
"rsaref",
|
||||
"apps",
|
||||
"test",
|
||||
"tools"
|
||||
|
|
|
@ -21,7 +21,7 @@ while (@ARGV) {
|
|||
}
|
||||
|
||||
|
||||
@source = (<crypto/*.[ch]>, <crypto/*/*.[ch]>, <rsaref/*.[ch]>, <ssl/*.[ch]>);
|
||||
@source = (<crypto/*.[ch]>, <crypto/*/*.[ch]>, <ssl/*.[ch]>);
|
||||
foreach $file (@source) {
|
||||
next if -l $file;
|
||||
|
||||
|
|
Loading…
Reference in a new issue