Remove remaining Kerberos references
Following on from the removal of libcrypto and libssl support for Kerberos this commit removes all remaining references to Kerberos. Reviewed-by: Rich Salz <rsalz@openssl.org>
This commit is contained in:
parent
60b3d36df3
commit
e36827f6d1
103
Configure
103
Configure
@ -14,7 +14,7 @@ use File::Spec::Functions;
|
|||||||
|
|
||||||
# see INSTALL for instructions.
|
# see INSTALL for instructions.
|
||||||
|
|
||||||
my $usage="Usage: Configure [no-<cipher> ...] [enable-<cipher> ...] [experimental-<cipher> ...] [-Dxxx] [-lxxx] [-Lxxx] [-fxxx] [-Kxxx] [no-hw-xxx|no-hw] [[no-]threads] [[no-]shared] [[no-]zlib|zlib-dynamic] [no-asm] [no-dso] [no-krb5] [sctp] [386] [--prefix=DIR] [--openssldir=OPENSSLDIR] [--with-xxx[=vvv]] [--test-sanity] [--config=FILE] os/compiler[:flags]\n";
|
my $usage="Usage: Configure [no-<cipher> ...] [enable-<cipher> ...] [experimental-<cipher> ...] [-Dxxx] [-lxxx] [-Lxxx] [-fxxx] [-Kxxx] [no-hw-xxx|no-hw] [[no-]threads] [[no-]shared] [[no-]zlib|zlib-dynamic] [no-asm] [no-dso] [sctp] [386] [--prefix=DIR] [--openssldir=OPENSSLDIR] [--with-xxx[=vvv]] [--test-sanity] [--config=FILE] os/compiler[:flags]\n";
|
||||||
|
|
||||||
# Options:
|
# Options:
|
||||||
#
|
#
|
||||||
@ -30,18 +30,6 @@ my $usage="Usage: Configure [no-<cipher> ...] [enable-<cipher> ...] [experimenta
|
|||||||
# default). This needn't be set in advance, you can
|
# default). This needn't be set in advance, you can
|
||||||
# just as well use "make INSTALL_PREFIX=/whatever install".
|
# just as well use "make INSTALL_PREFIX=/whatever install".
|
||||||
#
|
#
|
||||||
# --with-krb5-dir Declare where Kerberos 5 lives. The libraries are expected
|
|
||||||
# to live in the subdirectory lib/ and the header files in
|
|
||||||
# include/. A value is required.
|
|
||||||
# --with-krb5-lib Declare where the Kerberos 5 libraries live. A value is
|
|
||||||
# required.
|
|
||||||
# (Default: KRB5_DIR/lib)
|
|
||||||
# --with-krb5-include Declare where the Kerberos 5 header files live. A
|
|
||||||
# value is required.
|
|
||||||
# (Default: KRB5_DIR/include)
|
|
||||||
# --with-krb5-flavor Declare what flavor of Kerberos 5 is used. Currently
|
|
||||||
# supported values are "MIT" and "Heimdal". A value is required.
|
|
||||||
#
|
|
||||||
# --test-sanity Make a number of sanity checks on the data in this file.
|
# --test-sanity Make a number of sanity checks on the data in this file.
|
||||||
# This is a debugging tool for OpenSSL developers.
|
# This is a debugging tool for OpenSSL developers.
|
||||||
#
|
#
|
||||||
@ -59,7 +47,6 @@ my $usage="Usage: Configure [no-<cipher> ...] [enable-<cipher> ...] [experimenta
|
|||||||
# no-asm do not use assembler
|
# no-asm do not use assembler
|
||||||
# no-dso do not compile in any native shared-library methods. This
|
# no-dso do not compile in any native shared-library methods. This
|
||||||
# will ensure that all methods just return NULL.
|
# will ensure that all methods just return NULL.
|
||||||
# no-krb5 do not compile in any KRB5 library or code.
|
|
||||||
# [no-]zlib [don't] compile support for zlib compression.
|
# [no-]zlib [don't] compile support for zlib compression.
|
||||||
# zlib-dynamic Like "zlib", but the zlib library is expected to be a shared
|
# zlib-dynamic Like "zlib", but the zlib library is expected to be a shared
|
||||||
# library and will be loaded in run-time by the OpenSSL library.
|
# library and will be loaded in run-time by the OpenSSL library.
|
||||||
@ -782,7 +769,6 @@ my $no_threads=0;
|
|||||||
my $threads=0;
|
my $threads=0;
|
||||||
my $no_shared=0; # but "no-shared" is default
|
my $no_shared=0; # but "no-shared" is default
|
||||||
my $zlib=1; # but "no-zlib" is default
|
my $zlib=1; # but "no-zlib" is default
|
||||||
my $no_krb5=0; # but "no-krb5" is implied unless "--with-krb5-..." is used
|
|
||||||
my $no_rfc3779=1; # but "no-rfc3779" is default
|
my $no_rfc3779=1; # but "no-rfc3779" is default
|
||||||
my $no_asm=0;
|
my $no_asm=0;
|
||||||
my $no_dso=0;
|
my $no_dso=0;
|
||||||
@ -856,7 +842,6 @@ my $openssl_thread_defines;
|
|||||||
my $openssl_sys_defines="";
|
my $openssl_sys_defines="";
|
||||||
my $openssl_other_defines;
|
my $openssl_other_defines;
|
||||||
my $libs;
|
my $libs;
|
||||||
my $libkrb5="";
|
|
||||||
my $target;
|
my $target;
|
||||||
my $options;
|
my $options;
|
||||||
my $make_depend=0;
|
my $make_depend=0;
|
||||||
@ -1005,10 +990,6 @@ PROCESS_ARGS:
|
|||||||
{
|
{
|
||||||
$install_prefix=$1;
|
$install_prefix=$1;
|
||||||
}
|
}
|
||||||
elsif (/^--with-krb5-(dir|lib|include|flavor)=(.*)$/)
|
|
||||||
{
|
|
||||||
$withargs{"krb5-".$1}=$2;
|
|
||||||
}
|
|
||||||
elsif (/^--with-zlib-lib=(.*)$/)
|
elsif (/^--with-zlib-lib=(.*)$/)
|
||||||
{
|
{
|
||||||
$withargs{"zlib-lib"}=$1;
|
$withargs{"zlib-lib"}=$1;
|
||||||
@ -1076,11 +1057,6 @@ if ($processor eq "386")
|
|||||||
$disabled{"sse2"} = "forced";
|
$disabled{"sse2"} = "forced";
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!defined($withargs{"krb5-flavor"}) || $withargs{"krb5-flavor"} eq "")
|
|
||||||
{
|
|
||||||
$disabled{"krb5"} = "krb5-flavor not specified";
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!defined($disabled{"zlib-dynamic"}))
|
if (!defined($disabled{"zlib-dynamic"}))
|
||||||
{
|
{
|
||||||
# "zlib-dynamic" was specifically enabled, so enable "zlib"
|
# "zlib-dynamic" was specifically enabled, so enable "zlib"
|
||||||
@ -1223,19 +1199,14 @@ foreach (sort (keys %disabled))
|
|||||||
$openssl_algorithm_defines .= "#define OPENSSL_NO_$ALGO\n";
|
$openssl_algorithm_defines .= "#define OPENSSL_NO_$ALGO\n";
|
||||||
print " OPENSSL_NO_$ALGO";
|
print " OPENSSL_NO_$ALGO";
|
||||||
|
|
||||||
if (/^krb5$/)
|
push @skip, $algo;
|
||||||
{ $no_krb5 = 1; }
|
# fix-up crypto/directory name(s)
|
||||||
else
|
$skip[$#skip]="whrlpool" if $algo eq "whirlpool";
|
||||||
{
|
$skip[$#skip]="ripemd" if $algo eq "rmd160";
|
||||||
push @skip, $algo;
|
|
||||||
# fix-up crypto/directory name(s)
|
|
||||||
$skip[$#skip]="whrlpool" if $algo eq "whirlpool";
|
|
||||||
$skip[$#skip]="ripemd" if $algo eq "rmd160";
|
|
||||||
|
|
||||||
print " (skip dir)";
|
print " (skip dir)";
|
||||||
|
|
||||||
$depflags .= " -DOPENSSL_NO_$ALGO";
|
$depflags .= " -DOPENSSL_NO_$ALGO";
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1354,62 +1325,6 @@ my $no_user_cflags=0;
|
|||||||
if ($flags ne "") { $cflags="$flags$cflags"; }
|
if ($flags ne "") { $cflags="$flags$cflags"; }
|
||||||
else { $no_user_cflags=1; }
|
else { $no_user_cflags=1; }
|
||||||
|
|
||||||
# Kerberos settings. The flavor must be provided from outside, either through
|
|
||||||
# the script "config" or manually.
|
|
||||||
if (!$no_krb5)
|
|
||||||
{
|
|
||||||
my ($lresolv, $lpath, $lext);
|
|
||||||
if ($withargs{"krb5-flavor"} =~ /^[Hh]eimdal$/)
|
|
||||||
{
|
|
||||||
die "Sorry, Heimdal is currently not supported\n";
|
|
||||||
}
|
|
||||||
##### HACK to force use of Heimdal.
|
|
||||||
##### WARNING: Since we don't really have adequate support for Heimdal,
|
|
||||||
##### using this will break the build. You'll have to make
|
|
||||||
##### changes to the source, and if you do, please send
|
|
||||||
##### patches to openssl-dev@openssl.org
|
|
||||||
if ($withargs{"krb5-flavor"} =~ /^force-[Hh]eimdal$/)
|
|
||||||
{
|
|
||||||
warn "Heimdal isn't really supported. Your build WILL break\n";
|
|
||||||
warn "If you fix the problems, please send a patch to openssl-dev\@openssl.org\n";
|
|
||||||
$withargs{"krb5-dir"} = "/usr/heimdal"
|
|
||||||
if $withargs{"krb5-dir"} eq "";
|
|
||||||
$withargs{"krb5-lib"} = "-L".$withargs{"krb5-dir"}.
|
|
||||||
"/lib -lgssapi -lkrb5 -lcom_err"
|
|
||||||
if $withargs{"krb5-lib"} eq "" && !$IsMK1MF;
|
|
||||||
$cflags="-DKRB5_HEIMDAL $cflags";
|
|
||||||
}
|
|
||||||
if ($withargs{"krb5-flavor"} =~ /^[Mm][Ii][Tt]/)
|
|
||||||
{
|
|
||||||
$withargs{"krb5-dir"} = "/usr/kerberos"
|
|
||||||
if $withargs{"krb5-dir"} eq "";
|
|
||||||
$withargs{"krb5-lib"} = "-L".$withargs{"krb5-dir"}.
|
|
||||||
"/lib -lgssapi_krb5 -lkrb5 -lcom_err -lk5crypto"
|
|
||||||
if $withargs{"krb5-lib"} eq "" && !$IsMK1MF;
|
|
||||||
$cflags="-DKRB5_MIT $cflags";
|
|
||||||
$withargs{"krb5-flavor"} =~ s/^[Mm][Ii][Tt][._-]*//;
|
|
||||||
if ($withargs{"krb5-flavor"} =~ /^1[._-]*[01]/)
|
|
||||||
{
|
|
||||||
$cflags="-DKRB5_MIT_OLD11 $cflags";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
LRESOLV:
|
|
||||||
foreach $lpath ("/lib", "/usr/lib")
|
|
||||||
{
|
|
||||||
foreach $lext ("a", "so")
|
|
||||||
{
|
|
||||||
$lresolv = "$lpath/libresolv.$lext";
|
|
||||||
last LRESOLV if (-r "$lresolv");
|
|
||||||
$lresolv = "";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
$withargs{"krb5-lib"} .= " -lresolv"
|
|
||||||
if ("$lresolv" ne "");
|
|
||||||
$withargs{"krb5-include"} = "-I".$withargs{"krb5-dir"}."/include"
|
|
||||||
if $withargs{"krb5-include"} eq "" &&
|
|
||||||
$withargs{"krb5-dir"} ne "";
|
|
||||||
}
|
|
||||||
|
|
||||||
# The DSO code currently always implements all functions so that no
|
# The DSO code currently always implements all functions so that no
|
||||||
# applications will have to worry about that from a compilation point
|
# applications will have to worry about that from a compilation point
|
||||||
# of view. However, the "method"s may return zero unless that platform
|
# of view. However, the "method"s may return zero unless that platform
|
||||||
@ -1827,8 +1742,6 @@ while (<IN>)
|
|||||||
s/^PROCESSOR=.*/PROCESSOR= $processor/;
|
s/^PROCESSOR=.*/PROCESSOR= $processor/;
|
||||||
s/^ARFLAGS=.*/ARFLAGS= $arflags/;
|
s/^ARFLAGS=.*/ARFLAGS= $arflags/;
|
||||||
s/^PERL=.*/PERL= $perl/;
|
s/^PERL=.*/PERL= $perl/;
|
||||||
s/^KRB5_INCLUDES=.*/KRB5_INCLUDES=$withargs{"krb5-include"}/;
|
|
||||||
s/^LIBKRB5=.*/LIBKRB5=$withargs{"krb5-lib"}/;
|
|
||||||
s/^LIBZLIB=.*/LIBZLIB=$withargs{"zlib-lib"}/;
|
s/^LIBZLIB=.*/LIBZLIB=$withargs{"zlib-lib"}/;
|
||||||
s/^ZLIB_INCLUDE=.*/ZLIB_INCLUDE=$withargs{"zlib-include"}/;
|
s/^ZLIB_INCLUDE=.*/ZLIB_INCLUDE=$withargs{"zlib-include"}/;
|
||||||
s/^FIPSLIBDIR=.*/FIPSLIBDIR=$fipslibdir/;
|
s/^FIPSLIBDIR=.*/FIPSLIBDIR=$fipslibdir/;
|
||||||
@ -1887,8 +1800,6 @@ print "PROCESSOR =$processor\n";
|
|||||||
print "RANLIB =$ranlib\n";
|
print "RANLIB =$ranlib\n";
|
||||||
print "ARFLAGS =$arflags\n";
|
print "ARFLAGS =$arflags\n";
|
||||||
print "PERL =$perl\n";
|
print "PERL =$perl\n";
|
||||||
print "KRB5_INCLUDES =",$withargs{"krb5-include"},"\n"
|
|
||||||
if $withargs{"krb5-include"} ne "";
|
|
||||||
|
|
||||||
my $des_ptr=0;
|
my $des_ptr=0;
|
||||||
my $des_risc1=0;
|
my $des_risc1=0;
|
||||||
|
@ -134,7 +134,7 @@ Currently, the logical names supported are:
|
|||||||
disabling it is supported. Supported algorithms to
|
disabling it is supported. Supported algorithms to
|
||||||
do this with are: AES, BF, CAMELLIA, CAST, CMS, COMP,
|
do this with are: AES, BF, CAMELLIA, CAST, CMS, COMP,
|
||||||
DES, DGRAM, DH, DSA, EC, EC2M, ECDH, ECDSA, ENGINE,
|
DES, DGRAM, DH, DSA, EC, EC2M, ECDH, ECDSA, ENGINE,
|
||||||
ERR, GOST, HEARTBEATS, HMAC, IDEA, KRB5, MD2, MD4,
|
ERR, GOST, HEARTBEATS, HMAC, IDEA, MD2, MD4,
|
||||||
MD5, OCB, OCSP, PSK, RC2, RC4, RC5, RMD160, RSA, SCTP,
|
MD5, OCB, OCSP, PSK, RC2, RC4, RC5, RMD160, RSA, SCTP,
|
||||||
SEED, SOCK, SRP, SRTP, TLSEXT, WHIRLPOOL. So, for
|
SEED, SOCK, SRP, SRTP, TLSEXT, WHIRLPOOL. So, for
|
||||||
example, having the logical name OPENSSL_NO_RSA with
|
example, having the logical name OPENSSL_NO_RSA with
|
||||||
|
@ -219,7 +219,6 @@ BUILDENV= PLATFORM='$(PLATFORM)' PROCESSOR='$(PROCESSOR)' \
|
|||||||
DEPFLAG='-DOPENSSL_NO_DEPRECATED $(DEPFLAG)' \
|
DEPFLAG='-DOPENSSL_NO_DEPRECATED $(DEPFLAG)' \
|
||||||
MAKEDEPPROG='$(MAKEDEPPROG)' \
|
MAKEDEPPROG='$(MAKEDEPPROG)' \
|
||||||
SHARED_LDFLAGS='$(SHARED_LDFLAGS)' \
|
SHARED_LDFLAGS='$(SHARED_LDFLAGS)' \
|
||||||
KRB5_INCLUDES='$(KRB5_INCLUDES)' LIBKRB5='$(LIBKRB5)' \
|
|
||||||
ZLIB_INCLUDE='$(ZLIB_INCLUDE)' LIBZLIB='$(LIBZLIB)' \
|
ZLIB_INCLUDE='$(ZLIB_INCLUDE)' LIBZLIB='$(LIBZLIB)' \
|
||||||
EXE_EXT='$(EXE_EXT)' SHARED_LIBS='$(SHARED_LIBS)' \
|
EXE_EXT='$(EXE_EXT)' SHARED_LIBS='$(SHARED_LIBS)' \
|
||||||
SHLIB_EXT='$(SHLIB_EXT)' SHLIB_TARGET='$(SHLIB_TARGET)' \
|
SHLIB_EXT='$(SHLIB_EXT)' SHLIB_TARGET='$(SHLIB_TARGET)' \
|
||||||
@ -340,9 +339,6 @@ build-shared: do_$(SHLIB_TARGET) link-shared
|
|||||||
|
|
||||||
do_$(SHLIB_TARGET):
|
do_$(SHLIB_TARGET):
|
||||||
@ set -e; libs='-L. $(SHLIBDEPS)'; for i in $(SHLIBDIRS); do \
|
@ set -e; libs='-L. $(SHLIBDEPS)'; for i in $(SHLIBDIRS); do \
|
||||||
if [ "$$i" = "ssl" -a -n "$(LIBKRB5)" ]; then \
|
|
||||||
libs="$(LIBKRB5) $$libs"; \
|
|
||||||
fi; \
|
|
||||||
$(CLEARENV) && $(MAKE) -f Makefile.shared -e $(BUILDENV) \
|
$(CLEARENV) && $(MAKE) -f Makefile.shared -e $(BUILDENV) \
|
||||||
LIBNAME=$$i LIBVERSION=$(SHLIB_MAJOR).$(SHLIB_MINOR) \
|
LIBNAME=$$i LIBVERSION=$(SHLIB_MAJOR).$(SHLIB_MINOR) \
|
||||||
LIBCOMPATVERSIONS=";$(SHLIB_VERSION_HISTORY)" \
|
LIBCOMPATVERSIONS=";$(SHLIB_VERSION_HISTORY)" \
|
||||||
@ -363,7 +359,7 @@ libcrypto.pc: Makefile
|
|||||||
echo 'Requires: '; \
|
echo 'Requires: '; \
|
||||||
echo 'Libs: -L$${libdir} -lcrypto'; \
|
echo 'Libs: -L$${libdir} -lcrypto'; \
|
||||||
echo 'Libs.private: $(EX_LIBS)'; \
|
echo 'Libs.private: $(EX_LIBS)'; \
|
||||||
echo 'Cflags: -I$${includedir} $(KRB5_INCLUDES)' ) > libcrypto.pc
|
echo 'Cflags: -I$${includedir}' ) > libcrypto.pc
|
||||||
|
|
||||||
libssl.pc: Makefile
|
libssl.pc: Makefile
|
||||||
@ ( echo 'prefix=$(INSTALLTOP)'; \
|
@ ( echo 'prefix=$(INSTALLTOP)'; \
|
||||||
@ -377,7 +373,7 @@ libssl.pc: Makefile
|
|||||||
echo 'Requires.private: libcrypto'; \
|
echo 'Requires.private: libcrypto'; \
|
||||||
echo 'Libs: -L$${libdir} -lssl'; \
|
echo 'Libs: -L$${libdir} -lssl'; \
|
||||||
echo 'Libs.private: $(EX_LIBS)'; \
|
echo 'Libs.private: $(EX_LIBS)'; \
|
||||||
echo 'Cflags: -I$${includedir} $(KRB5_INCLUDES)' ) > libssl.pc
|
echo 'Cflags: -I$${includedir}' ) > libssl.pc
|
||||||
|
|
||||||
openssl.pc: Makefile
|
openssl.pc: Makefile
|
||||||
@ ( echo 'prefix=$(INSTALLTOP)'; \
|
@ ( echo 'prefix=$(INSTALLTOP)'; \
|
||||||
|
21
config
21
config
@ -873,27 +873,6 @@ do
|
|||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
# Discover Kerberos 5 (since it's still a prototype, we don't
|
|
||||||
# do any guesses yet, that's why this section is commented away.
|
|
||||||
#if [ -d /usr/kerberos ]; then
|
|
||||||
# krb5_dir=/usr/kerberos
|
|
||||||
# if [ \( -f $krb5_dir/lib/libgssapi_krb5.a -o -f $krb5_dir/lib/libgssapi_krb5.so* \)\
|
|
||||||
# -a \( -f $krb5_dir/lib/libkrb5.a -o -f $krb5_dir/lib/libkrb5.so* \)\
|
|
||||||
# -a \( -f $krb5_dir/lib/libcom_err.a -o -f $krb5_dir/lib/libcom_err.so* \)\
|
|
||||||
# -a \( -f $krb5_dir/lib/libk5crypto.a -o -f $krb5_dir/lib/libk5crypto.so* \)\
|
|
||||||
# -a \( -f $krb5_dir/include/krb5.h \) ]; then
|
|
||||||
# options="$options --with-krb5-flavor=MIT"
|
|
||||||
# fi
|
|
||||||
#elif [ -d /usr/heimdal ]; then
|
|
||||||
# krb5_dir=/usr/heimdal
|
|
||||||
# if [ \( -f $krb5_dir/lib/libgssapi.a -o -f $krb5_dir/lib/libgssapi.so* \)\
|
|
||||||
# -a \( -f $krb5_dir/lib/libkrb5.a -o -f $krb5_dir/lib/libkrb5.so* \)\
|
|
||||||
# -a \( -f $krb5_dir/lib/libcom_err.a -o -f $krb5_dir/lib/libcom_err.so* \)\
|
|
||||||
# -a \( -f $krb5_dir/include/krb5.h \) ]; then
|
|
||||||
# options="$options --with-krb5-flavor=Heimdal"
|
|
||||||
# fi
|
|
||||||
#fi
|
|
||||||
|
|
||||||
if [ -z "$OUT" ]; then
|
if [ -z "$OUT" ]; then
|
||||||
OUT="$CC"
|
OUT="$CC"
|
||||||
fi
|
fi
|
||||||
|
@ -127,7 +127,7 @@ $ ENCRYPT_TYPES = "Basic,"+ -
|
|||||||
"DES,AES,RC2,RC4,RC5,IDEA,BF,CAST,CAMELLIA,SEED,MODES,"+ -
|
"DES,AES,RC2,RC4,RC5,IDEA,BF,CAST,CAMELLIA,SEED,MODES,"+ -
|
||||||
"BN,EC,RSA,DSA,ECDSA,DH,ECDH,DSO,ENGINE,"+ -
|
"BN,EC,RSA,DSA,ECDSA,DH,ECDH,DSO,ENGINE,"+ -
|
||||||
"BUFFER,BIO,STACK,LHASH,RAND,ERR,"+ -
|
"BUFFER,BIO,STACK,LHASH,RAND,ERR,"+ -
|
||||||
"EVP,ASN1,PEM,X509,X509V3,CONF,TXT_DB,PKCS7,PKCS12,COMP,OCSP,UI,KRB5,"+ -
|
"EVP,ASN1,PEM,X509,X509V3,CONF,TXT_DB,PKCS7,PKCS12,COMP,OCSP,UI,"+ -
|
||||||
"CMS,PQUEUE,TS,JPAKE,SRP,STORE,CMAC"
|
"CMS,PQUEUE,TS,JPAKE,SRP,STORE,CMAC"
|
||||||
$ ENDIF
|
$ ENDIF
|
||||||
$!
|
$!
|
||||||
@ -343,7 +343,6 @@ $ LIB_COMP = "comp_lib,comp_err,"+ -
|
|||||||
$ LIB_OCSP = "ocsp_asn,ocsp_ext,ocsp_ht,ocsp_lib,ocsp_cl,"+ -
|
$ LIB_OCSP = "ocsp_asn,ocsp_ext,ocsp_ht,ocsp_lib,ocsp_cl,"+ -
|
||||||
"ocsp_srv,ocsp_prn,ocsp_vfy,ocsp_err,v3_ocsp"
|
"ocsp_srv,ocsp_prn,ocsp_vfy,ocsp_err,v3_ocsp"
|
||||||
$ LIB_UI = "ui_err,ui_lib,ui_openssl,ui_util"
|
$ LIB_UI = "ui_err,ui_lib,ui_openssl,ui_util"
|
||||||
$ LIB_KRB5 = "krb5_asn"
|
|
||||||
$ LIB_CMS = "cms_lib,cms_asn1,cms_att,cms_io,cms_smime,cms_err,"+ -
|
$ LIB_CMS = "cms_lib,cms_asn1,cms_att,cms_io,cms_smime,cms_err,"+ -
|
||||||
"cms_sd,cms_dd,cms_cd,cms_env,cms_enc,cms_ess,"+ -
|
"cms_sd,cms_dd,cms_cd,cms_env,cms_enc,cms_ess,"+ -
|
||||||
"cms_pwri,cms_kari"
|
"cms_pwri,cms_kari"
|
||||||
|
@ -80,7 +80,7 @@ $ sdirs := , -
|
|||||||
bn, ec, rsa, dsa, ecdsa, dh, ecdh, dso, engine, -
|
bn, ec, rsa, dsa, ecdsa, dh, ecdh, dso, engine, -
|
||||||
buffer, bio, stack, lhash, rand, err, -
|
buffer, bio, stack, lhash, rand, err, -
|
||||||
evp, asn1, pem, x509, x509v3, conf, txt_db, pkcs7, pkcs12, comp, ocsp, -
|
evp, asn1, pem, x509, x509v3, conf, txt_db, pkcs7, pkcs12, comp, ocsp, -
|
||||||
ui, krb5, -
|
ui, -
|
||||||
cms, pqueue, ts, jpake, srp, store, cmac
|
cms, pqueue, ts, jpake, srp, store, cmac
|
||||||
$!
|
$!
|
||||||
$ exheader_ := crypto.h, opensslv.h, ebcdic.h, symhacks.h, ossl_typ.h
|
$ exheader_ := crypto.h, opensslv.h, ebcdic.h, symhacks.h, ossl_typ.h
|
||||||
@ -132,7 +132,6 @@ $ exheader_pkcs12 := pkcs12.h
|
|||||||
$ exheader_comp := comp.h
|
$ exheader_comp := comp.h
|
||||||
$ exheader_ocsp := ocsp.h
|
$ exheader_ocsp := ocsp.h
|
||||||
$ exheader_ui := ui.h
|
$ exheader_ui := ui.h
|
||||||
$ exheader_krb5 := krb5_asn.h
|
|
||||||
$ exheader_cms := cms.h
|
$ exheader_cms := cms.h
|
||||||
$ exheader_pqueue := pqueue.h
|
$ exheader_pqueue := pqueue.h
|
||||||
$ exheader_ts := ts.h
|
$ exheader_ts := ts.h
|
||||||
|
@ -34,9 +34,6 @@ PKCS#12: Personal Information Exchange Syntax Standard, version 1.0.
|
|||||||
2560 X.509 Internet Public Key Infrastructure Online Certificate
|
2560 X.509 Internet Public Key Infrastructure Online Certificate
|
||||||
Status Protocol - OCSP
|
Status Protocol - OCSP
|
||||||
|
|
||||||
2712 Addition of Kerberos Cipher Suites to Transport Layer Security
|
|
||||||
(TLS)
|
|
||||||
|
|
||||||
2898 PKCS #5: Password-Based Cryptography Specification Version 2.0
|
2898 PKCS #5: Password-Based Cryptography Specification Version 2.0
|
||||||
|
|
||||||
2986 PKCS #10: Certification Request Syntax Specification Version 1.7
|
2986 PKCS #10: Certification Request Syntax Specification Version 1.7
|
||||||
|
@ -2068,6 +2068,31 @@ DECLARE_SPECIAL_STACK_OF(OPENSSL_BLOCK, void)
|
|||||||
# define sk_void_sort(st) SKM_sk_sort(void, (st))
|
# define sk_void_sort(st) SKM_sk_sort(void, (st))
|
||||||
# define sk_void_is_sorted(st) SKM_sk_is_sorted(void, (st))
|
# define sk_void_is_sorted(st) SKM_sk_is_sorted(void, (st))
|
||||||
|
|
||||||
|
# define sk_OPENSSL_PSTRING_new(cmp) ((STACK_OF(OPENSSL_PSTRING) *)sk_new(CHECKED_SK_CMP_FUNC(OPENSSL_STRING, cmp)))
|
||||||
|
# define sk_OPENSSL_PSTRING_new_null() ((STACK_OF(OPENSSL_PSTRING) *)sk_new_null())
|
||||||
|
# define sk_OPENSSL_PSTRING_push(st, val) sk_push(CHECKED_STACK_OF(OPENSSL_PSTRING, st), CHECKED_PTR_OF(OPENSSL_STRING, val))
|
||||||
|
# define sk_OPENSSL_PSTRING_find(st, val) sk_find(CHECKED_STACK_OF(OPENSSL_PSTRING, st), CHECKED_PTR_OF(OPENSSL_STRING, val))
|
||||||
|
# define sk_OPENSSL_PSTRING_value(st, i) ((OPENSSL_PSTRING)sk_value(CHECKED_STACK_OF(OPENSSL_PSTRING, st), i))
|
||||||
|
# define sk_OPENSSL_PSTRING_num(st) SKM_sk_num(OPENSSL_PSTRING, st)
|
||||||
|
# define sk_OPENSSL_PSTRING_pop_free(st, free_func) sk_pop_free(CHECKED_STACK_OF(OPENSSL_PSTRING, st), CHECKED_SK_FREE_FUNC(OPENSSL_STRING, free_func))
|
||||||
|
# define sk_OPENSSL_PSTRING_deep_copy(st, copy_func, free_func) ((STACK_OF(OPENSSL_PSTRING) *)sk_deep_copy(CHECKED_STACK_OF(OPENSSL_PSTRING, st), CHECKED_SK_COPY_FUNC(OPENSSL_STRING, copy_func), CHECKED_SK_FREE_FUNC(OPENSSL_STRING, free_func)))
|
||||||
|
# define sk_OPENSSL_PSTRING_insert(st, val, i) sk_insert(CHECKED_STACK_OF(OPENSSL_PSTRING, st), CHECKED_PTR_OF(OPENSSL_STRING, val), i)
|
||||||
|
# define sk_OPENSSL_PSTRING_free(st) SKM_sk_free(OPENSSL_PSTRING, st)
|
||||||
|
# define sk_OPENSSL_PSTRING_set(st, i, val) sk_set(CHECKED_STACK_OF(OPENSSL_PSTRING, st), i, CHECKED_PTR_OF(OPENSSL_STRING, val))
|
||||||
|
# define sk_OPENSSL_PSTRING_zero(st) SKM_sk_zero(OPENSSL_PSTRING, (st))
|
||||||
|
# define sk_OPENSSL_PSTRING_unshift(st, val) sk_unshift(CHECKED_STACK_OF(OPENSSL_PSTRING, st), CHECKED_PTR_OF(OPENSSL_STRING, val))
|
||||||
|
# define sk_OPENSSL_PSTRING_find_ex(st, val) sk_find_ex((_STACK *)CHECKED_CONST_PTR_OF(STACK_OF(OPENSSL_PSTRING), st), CHECKED_CONST_PTR_OF(OPENSSL_STRING, val))
|
||||||
|
# define sk_OPENSSL_PSTRING_delete(st, i) SKM_sk_delete(OPENSSL_PSTRING, (st), (i))
|
||||||
|
# define sk_OPENSSL_PSTRING_delete_ptr(st, ptr) (OPENSSL_PSTRING *)sk_delete_ptr(CHECKED_STACK_OF(OPENSSL_PSTRING, st), CHECKED_PTR_OF(OPENSSL_STRING, ptr))
|
||||||
|
# define sk_OPENSSL_PSTRING_set_cmp_func(st, cmp) \
|
||||||
|
((int (*)(const OPENSSL_STRING * const *,const OPENSSL_STRING * const *)) \
|
||||||
|
sk_set_cmp_func(CHECKED_STACK_OF(OPENSSL_PSTRING, st), CHECKED_SK_CMP_FUNC(OPENSSL_STRING, cmp)))
|
||||||
|
# define sk_OPENSSL_PSTRING_dup(st) SKM_sk_dup(OPENSSL_PSTRING, st)
|
||||||
|
# define sk_OPENSSL_PSTRING_shift(st) SKM_sk_shift(OPENSSL_PSTRING, (st))
|
||||||
|
# define sk_OPENSSL_PSTRING_pop(st) (OPENSSL_STRING *)sk_pop(CHECKED_STACK_OF(OPENSSL_PSTRING, st))
|
||||||
|
# define sk_OPENSSL_PSTRING_sort(st) SKM_sk_sort(OPENSSL_PSTRING, (st))
|
||||||
|
# define sk_OPENSSL_PSTRING_is_sorted(st) SKM_sk_is_sorted(OPENSSL_PSTRING, (st))
|
||||||
|
|
||||||
# define sk_OPENSSL_STRING_new(cmp) ((STACK_OF(OPENSSL_STRING) *)sk_new(CHECKED_SK_CMP_FUNC(char, cmp)))
|
# define sk_OPENSSL_STRING_new(cmp) ((STACK_OF(OPENSSL_STRING) *)sk_new(CHECKED_SK_CMP_FUNC(char, cmp)))
|
||||||
# define sk_OPENSSL_STRING_new_null() ((STACK_OF(OPENSSL_STRING) *)sk_new_null())
|
# define sk_OPENSSL_STRING_new_null() ((STACK_OF(OPENSSL_STRING) *)sk_new_null())
|
||||||
# define sk_OPENSSL_STRING_push(st, val) sk_push(CHECKED_STACK_OF(OPENSSL_STRING, st), CHECKED_PTR_OF(char, val))
|
# define sk_OPENSSL_STRING_push(st, val) sk_push(CHECKED_STACK_OF(OPENSSL_STRING, st), CHECKED_PTR_OF(char, val))
|
||||||
@ -2118,31 +2143,6 @@ DECLARE_SPECIAL_STACK_OF(OPENSSL_BLOCK, void)
|
|||||||
# define sk_OPENSSL_BLOCK_sort(st) SKM_sk_sort(OPENSSL_BLOCK, (st))
|
# define sk_OPENSSL_BLOCK_sort(st) SKM_sk_sort(OPENSSL_BLOCK, (st))
|
||||||
# define sk_OPENSSL_BLOCK_is_sorted(st) SKM_sk_is_sorted(OPENSSL_BLOCK, (st))
|
# define sk_OPENSSL_BLOCK_is_sorted(st) SKM_sk_is_sorted(OPENSSL_BLOCK, (st))
|
||||||
|
|
||||||
# define sk_OPENSSL_PSTRING_new(cmp) ((STACK_OF(OPENSSL_PSTRING) *)sk_new(CHECKED_SK_CMP_FUNC(OPENSSL_STRING, cmp)))
|
|
||||||
# define sk_OPENSSL_PSTRING_new_null() ((STACK_OF(OPENSSL_PSTRING) *)sk_new_null())
|
|
||||||
# define sk_OPENSSL_PSTRING_push(st, val) sk_push(CHECKED_STACK_OF(OPENSSL_PSTRING, st), CHECKED_PTR_OF(OPENSSL_STRING, val))
|
|
||||||
# define sk_OPENSSL_PSTRING_find(st, val) sk_find(CHECKED_STACK_OF(OPENSSL_PSTRING, st), CHECKED_PTR_OF(OPENSSL_STRING, val))
|
|
||||||
# define sk_OPENSSL_PSTRING_value(st, i) ((OPENSSL_PSTRING)sk_value(CHECKED_STACK_OF(OPENSSL_PSTRING, st), i))
|
|
||||||
# define sk_OPENSSL_PSTRING_num(st) SKM_sk_num(OPENSSL_PSTRING, st)
|
|
||||||
# define sk_OPENSSL_PSTRING_pop_free(st, free_func) sk_pop_free(CHECKED_STACK_OF(OPENSSL_PSTRING, st), CHECKED_SK_FREE_FUNC(OPENSSL_STRING, free_func))
|
|
||||||
# define sk_OPENSSL_PSTRING_deep_copy(st, copy_func, free_func) ((STACK_OF(OPENSSL_PSTRING) *)sk_deep_copy(CHECKED_STACK_OF(OPENSSL_PSTRING, st), CHECKED_SK_COPY_FUNC(OPENSSL_STRING, copy_func), CHECKED_SK_FREE_FUNC(OPENSSL_STRING, free_func)))
|
|
||||||
# define sk_OPENSSL_PSTRING_insert(st, val, i) sk_insert(CHECKED_STACK_OF(OPENSSL_PSTRING, st), CHECKED_PTR_OF(OPENSSL_STRING, val), i)
|
|
||||||
# define sk_OPENSSL_PSTRING_free(st) SKM_sk_free(OPENSSL_PSTRING, st)
|
|
||||||
# define sk_OPENSSL_PSTRING_set(st, i, val) sk_set(CHECKED_STACK_OF(OPENSSL_PSTRING, st), i, CHECKED_PTR_OF(OPENSSL_STRING, val))
|
|
||||||
# define sk_OPENSSL_PSTRING_zero(st) SKM_sk_zero(OPENSSL_PSTRING, (st))
|
|
||||||
# define sk_OPENSSL_PSTRING_unshift(st, val) sk_unshift(CHECKED_STACK_OF(OPENSSL_PSTRING, st), CHECKED_PTR_OF(OPENSSL_STRING, val))
|
|
||||||
# define sk_OPENSSL_PSTRING_find_ex(st, val) sk_find_ex((_STACK *)CHECKED_CONST_PTR_OF(STACK_OF(OPENSSL_PSTRING), st), CHECKED_CONST_PTR_OF(OPENSSL_STRING, val))
|
|
||||||
# define sk_OPENSSL_PSTRING_delete(st, i) SKM_sk_delete(OPENSSL_PSTRING, (st), (i))
|
|
||||||
# define sk_OPENSSL_PSTRING_delete_ptr(st, ptr) (OPENSSL_PSTRING *)sk_delete_ptr(CHECKED_STACK_OF(OPENSSL_PSTRING, st), CHECKED_PTR_OF(OPENSSL_STRING, ptr))
|
|
||||||
# define sk_OPENSSL_PSTRING_set_cmp_func(st, cmp) \
|
|
||||||
((int (*)(const OPENSSL_STRING * const *,const OPENSSL_STRING * const *)) \
|
|
||||||
sk_set_cmp_func(CHECKED_STACK_OF(OPENSSL_PSTRING, st), CHECKED_SK_CMP_FUNC(OPENSSL_STRING, cmp)))
|
|
||||||
# define sk_OPENSSL_PSTRING_dup(st) SKM_sk_dup(OPENSSL_PSTRING, st)
|
|
||||||
# define sk_OPENSSL_PSTRING_shift(st) SKM_sk_shift(OPENSSL_PSTRING, (st))
|
|
||||||
# define sk_OPENSSL_PSTRING_pop(st) (OPENSSL_STRING *)sk_pop(CHECKED_STACK_OF(OPENSSL_PSTRING, st))
|
|
||||||
# define sk_OPENSSL_PSTRING_sort(st) SKM_sk_sort(OPENSSL_PSTRING, (st))
|
|
||||||
# define sk_OPENSSL_PSTRING_is_sorted(st) SKM_sk_is_sorted(OPENSSL_PSTRING, (st))
|
|
||||||
|
|
||||||
# define lh_ADDED_OBJ_new() LHM_lh_new(ADDED_OBJ,added_obj)
|
# define lh_ADDED_OBJ_new() LHM_lh_new(ADDED_OBJ,added_obj)
|
||||||
# define lh_ADDED_OBJ_insert(lh,inst) LHM_lh_insert(ADDED_OBJ,lh,inst)
|
# define lh_ADDED_OBJ_insert(lh,inst) LHM_lh_insert(ADDED_OBJ,lh,inst)
|
||||||
# define lh_ADDED_OBJ_retrieve(lh,inst) LHM_lh_retrieve(ADDED_OBJ,lh,inst)
|
# define lh_ADDED_OBJ_retrieve(lh,inst) LHM_lh_retrieve(ADDED_OBJ,lh,inst)
|
||||||
|
@ -180,8 +180,7 @@ typedef enum STORE_params {
|
|||||||
STORE_PARAM_KEY_PARAMETERS = 0x03, /* ??? */
|
STORE_PARAM_KEY_PARAMETERS = 0x03, /* ??? */
|
||||||
STORE_PARAM_KEY_NO_PARAMETERS = 0x04, /* N/A */
|
STORE_PARAM_KEY_NO_PARAMETERS = 0x04, /* N/A */
|
||||||
STORE_PARAM_AUTH_PASSPHRASE = 0x05, /* char * */
|
STORE_PARAM_AUTH_PASSPHRASE = 0x05, /* char * */
|
||||||
STORE_PARAM_AUTH_KRB5_TICKET = 0x06, /* void * */
|
STORE_PARAM_TYPE_NUM = 0x05 /* The amount of known parameter types */
|
||||||
STORE_PARAM_TYPE_NUM = 0x06 /* The amount of known parameter types */
|
|
||||||
} STORE_PARAM_TYPES;
|
} STORE_PARAM_TYPES;
|
||||||
/*
|
/*
|
||||||
* Parameter value sizes. -1 means unknown, anything else is the required
|
* Parameter value sizes. -1 means unknown, anything else is the required
|
||||||
|
@ -249,7 +249,7 @@ $ SDIRS := -
|
|||||||
des,aes,rc2,rc4,rc5,idea,bf,cast,camellia,seed,modes,-
|
des,aes,rc2,rc4,rc5,idea,bf,cast,camellia,seed,modes,-
|
||||||
bn,ec,rsa,dsa,ecdsa,dh,ecdh,dso,engine,-
|
bn,ec,rsa,dsa,ecdsa,dh,ecdh,dso,engine,-
|
||||||
buffer,bio,stack,lhash,rand,err,-
|
buffer,bio,stack,lhash,rand,err,-
|
||||||
evp,asn1,pem,x509,x509v3,conf,txt_db,pkcs7,pkcs12,comp,ocsp,ui,krb5,-
|
evp,asn1,pem,x509,x509v3,conf,txt_db,pkcs7,pkcs12,comp,ocsp,ui,-
|
||||||
cms,pqueue,ts,jpake,srp,store,cmac
|
cms,pqueue,ts,jpake,srp,store,cmac
|
||||||
$
|
$
|
||||||
$! One of the best way to figure out what the list should be is to do
|
$! One of the best way to figure out what the list should be is to do
|
||||||
@ -281,7 +281,6 @@ $ CONFIG_LOGICALS := AES,-
|
|||||||
HMAC,-
|
HMAC,-
|
||||||
IDEA,-
|
IDEA,-
|
||||||
JPAKE,-
|
JPAKE,-
|
||||||
KRB5,-
|
|
||||||
MD2,-
|
MD2,-
|
||||||
MD4,-
|
MD4,-
|
||||||
MD5,-
|
MD5,-
|
||||||
@ -339,7 +338,6 @@ $ CONFIG_DISABLE_RULES := RIJNDAEL/AES;-
|
|||||||
DH/GOST;-
|
DH/GOST;-
|
||||||
TLSEXT/SRP,HEARTBEAT;-
|
TLSEXT/SRP,HEARTBEAT;-
|
||||||
/STATIC_ENGINE;-
|
/STATIC_ENGINE;-
|
||||||
/KRB5;-
|
|
||||||
/DEPRECATED;-
|
/DEPRECATED;-
|
||||||
/EC_NISTP_64_GCC_128;-
|
/EC_NISTP_64_GCC_128;-
|
||||||
/GMP;-
|
/GMP;-
|
||||||
@ -774,7 +772,7 @@ $ HEADER_SDIRS := , -
|
|||||||
BN, EC, RSA, DSA, ECDSA, DH, ECDH, DSO, ENGINE, -
|
BN, EC, RSA, DSA, ECDSA, DH, ECDH, DSO, ENGINE, -
|
||||||
BUFFER, BIO, STACK, LHASH, RAND, ERR, -
|
BUFFER, BIO, STACK, LHASH, RAND, ERR, -
|
||||||
EVP, ASN1, PEM, X509, X509V3, CONF, TXT_DB, PKCS7, PKCS12, -
|
EVP, ASN1, PEM, X509, X509V3, CONF, TXT_DB, PKCS7, PKCS12, -
|
||||||
COMP, OCSP, UI, KRB5, -
|
COMP, OCSP, UI, -
|
||||||
CMS, PQUEUE, TS, JPAKE, SRP, STORE, CMAC
|
CMS, PQUEUE, TS, JPAKE, SRP, STORE, CMAC
|
||||||
$!
|
$!
|
||||||
$ EXHEADER_ := crypto.h, opensslv.h, ebcdic.h, symhacks.h, ossl_typ.h
|
$ EXHEADER_ := crypto.h, opensslv.h, ebcdic.h, symhacks.h, ossl_typ.h
|
||||||
@ -826,7 +824,6 @@ $ EXHEADER_PKCS12 := pkcs12.h
|
|||||||
$ EXHEADER_COMP := comp.h
|
$ EXHEADER_COMP := comp.h
|
||||||
$ EXHEADER_OCSP := ocsp.h
|
$ EXHEADER_OCSP := ocsp.h
|
||||||
$ EXHEADER_UI := ui.h
|
$ EXHEADER_UI := ui.h
|
||||||
$ EXHEADER_KRB5 := krb5_asn.h
|
|
||||||
$ EXHEADER_CMS := cms.h
|
$ EXHEADER_CMS := cms.h
|
||||||
$ EXHEADER_PQUEUE := pqueue.h
|
$ EXHEADER_PQUEUE := pqueue.h
|
||||||
$ EXHEADER_TS := ts.h
|
$ EXHEADER_TS := ts.h
|
||||||
@ -850,7 +847,7 @@ $!
|
|||||||
$! Copy All The ".H" Files From The [.SSL] Directory.
|
$! Copy All The ".H" Files From The [.SSL] Directory.
|
||||||
$!
|
$!
|
||||||
$! (keep these in the same order as ssl/Makefile)
|
$! (keep these in the same order as ssl/Makefile)
|
||||||
$ EXHEADER := ssl.h, ssl2.h, ssl3.h, ssl23.h, tls1.h, dtls1.h, kssl.h, srtp.h
|
$ EXHEADER := ssl.h, ssl2.h, ssl3.h, ssl23.h, tls1.h, dtls1.h, srtp.h
|
||||||
$ copy sys$disk:[.ssl]'exheader' sys$disk:[.include.openssl]
|
$ copy sys$disk:[.ssl]'exheader' sys$disk:[.include.openssl]
|
||||||
$!
|
$!
|
||||||
$! Purge the [.include.openssl] header files.
|
$! Purge the [.include.openssl] header files.
|
||||||
|
@ -5,13 +5,10 @@
|
|||||||
DIR= test
|
DIR= test
|
||||||
TOP= ..
|
TOP= ..
|
||||||
CC= cc
|
CC= cc
|
||||||
INCLUDES= -I$(TOP) -I../include -I../crypto/include $(KRB5_INCLUDES) -I$(TOP)/fips
|
INCLUDES= -I$(TOP) -I../include -I../crypto/include -I$(TOP)/fips
|
||||||
CFLAG= -g
|
CFLAG= -g
|
||||||
MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
|
MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
|
||||||
PERL= perl
|
PERL= perl
|
||||||
# KRB5 stuff
|
|
||||||
KRB5_INCLUDES=
|
|
||||||
LIBKRB5=
|
|
||||||
|
|
||||||
PEX_LIBS=
|
PEX_LIBS=
|
||||||
EX_LIBS= #-lnsl -lsocket
|
EX_LIBS= #-lnsl -lsocket
|
||||||
@ -419,14 +416,14 @@ $(DLIBCRYPTO):
|
|||||||
BUILD_CMD=shlib_target=; if [ -n "$(SHARED_LIBS)" ]; then \
|
BUILD_CMD=shlib_target=; if [ -n "$(SHARED_LIBS)" ]; then \
|
||||||
shlib_target="$(SHLIB_TARGET)"; \
|
shlib_target="$(SHLIB_TARGET)"; \
|
||||||
fi; \
|
fi; \
|
||||||
LIBRARIES="$(LIBSSL) $(LIBCRYPTO) $(LIBKRB5)"; \
|
LIBRARIES="$(LIBSSL) $(LIBCRYPTO)"; \
|
||||||
$(MAKE) -f $(TOP)/Makefile.shared -e \
|
$(MAKE) -f $(TOP)/Makefile.shared -e \
|
||||||
APPNAME=$$target$(EXE_EXT) OBJECTS="$$target.o $$testutil" \
|
APPNAME=$$target$(EXE_EXT) OBJECTS="$$target.o $$testutil" \
|
||||||
LIBDEPS="$(PEX_LIBS) $$LIBRARIES $(EX_LIBS)" \
|
LIBDEPS="$(PEX_LIBS) $$LIBRARIES $(EX_LIBS)" \
|
||||||
link_app.$${shlib_target}
|
link_app.$${shlib_target}
|
||||||
|
|
||||||
BUILD_CMD_STATIC=shlib_target=; \
|
BUILD_CMD_STATIC=shlib_target=; \
|
||||||
LIBRARIES="$(DLIBSSL) $(DLIBCRYPTO) $(LIBKRB5)"; \
|
LIBRARIES="$(DLIBSSL) $(DLIBCRYPTO)"; \
|
||||||
$(MAKE) -f $(TOP)/Makefile.shared -e \
|
$(MAKE) -f $(TOP)/Makefile.shared -e \
|
||||||
APPNAME=$$target$(EXE_EXT) OBJECTS="$$target.o $$testutil" \
|
APPNAME=$$target$(EXE_EXT) OBJECTS="$$target.o $$testutil" \
|
||||||
LIBDEPS="$(PEX_LIBS) $$LIBRARIES $(EX_LIBS)" \
|
LIBDEPS="$(PEX_LIBS) $$LIBRARIES $(EX_LIBS)" \
|
||||||
@ -478,7 +475,7 @@ FIPS_BUILD_CMD=shlib_target=; if [ -n "$(SHARED_LIBS)" ]; then \
|
|||||||
FIPS_CRYPTO_BUILD_CMD=shlib_target=; if [ -n "$(SHARED_LIBS)" ]; then \
|
FIPS_CRYPTO_BUILD_CMD=shlib_target=; if [ -n "$(SHARED_LIBS)" ]; then \
|
||||||
shlib_target="$(SHLIB_TARGET)"; \
|
shlib_target="$(SHLIB_TARGET)"; \
|
||||||
fi; \
|
fi; \
|
||||||
LIBRARIES="$(LIBSSL) $(LIBCRYPTO) $(LIBKRB5)"; \
|
LIBRARIES="$(LIBSSL) $(LIBCRYPTO)"; \
|
||||||
if [ -z "$(SHARED_LIBS)" -a -n "$(FIPSCANLIB)" ] ; then \
|
if [ -z "$(SHARED_LIBS)" -a -n "$(FIPSCANLIB)" ] ; then \
|
||||||
FIPSLD_CC="$(CC)"; CC=$(TOP)/fips/fipsld; export CC FIPSLD_CC; \
|
FIPSLD_CC="$(CC)"; CC=$(TOP)/fips/fipsld; export CC FIPSLD_CC; \
|
||||||
fi; \
|
fi; \
|
||||||
|
@ -23,8 +23,6 @@ while(<STDIN>) {
|
|||||||
@deps=grep(!/^\//,@deps);
|
@deps=grep(!/^\//,@deps);
|
||||||
@deps=grep(!/^\\$/,@deps);
|
@deps=grep(!/^\\$/,@deps);
|
||||||
@deps=grep(!/^$origfile$/,@deps);
|
@deps=grep(!/^$origfile$/,@deps);
|
||||||
# pull out the kludged kerberos header (if present).
|
|
||||||
@deps=grep(!/^[.\/]+\/krb5.h/,@deps);
|
|
||||||
push @{$files{$thisfile}},@deps;
|
push @{$files{$thisfile}},@deps;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -12,8 +12,6 @@ fi
|
|||||||
if [ "$MAKEDEPEND" = "" ]; then MAKEDEPEND=makedepend; fi
|
if [ "$MAKEDEPEND" = "" ]; then MAKEDEPEND=makedepend; fi
|
||||||
|
|
||||||
cp Makefile Makefile.save
|
cp Makefile Makefile.save
|
||||||
# fake the presence of Kerberos
|
|
||||||
touch $TOP/krb5.h
|
|
||||||
if expr "$MAKEDEPEND" : '.*cc' > /dev/null; then
|
if expr "$MAKEDEPEND" : '.*cc' > /dev/null; then
|
||||||
args=""
|
args=""
|
||||||
while [ $# -gt 0 ]; do
|
while [ $# -gt 0 ]; do
|
||||||
@ -32,7 +30,5 @@ else
|
|||||||
RC=$?
|
RC=$?
|
||||||
fi
|
fi
|
||||||
mv Makefile.new Makefile
|
mv Makefile.new Makefile
|
||||||
# unfake the presence of Kerberos
|
|
||||||
rm $TOP/krb5.h
|
|
||||||
|
|
||||||
exit $RC
|
exit $RC
|
||||||
|
@ -305,14 +305,6 @@
|
|||||||
-T JPAKE_STEP_PART
|
-T JPAKE_STEP_PART
|
||||||
-T JPAKE_ZKP
|
-T JPAKE_ZKP
|
||||||
-T KEY_TABLE_TYPE
|
-T KEY_TABLE_TYPE
|
||||||
-T KRB5_APREQBODY
|
|
||||||
-T KRB5_AUTHDATA
|
|
||||||
-T KRB5_AUTHENTBODY
|
|
||||||
-T KRB5_CHECKSUM
|
|
||||||
-T KRB5_ENCDATA
|
|
||||||
-T KRB5_ENCKEY
|
|
||||||
-T KRB5_PRINCNAME
|
|
||||||
-T KRB5_TKTBODY
|
|
||||||
-T LHASH
|
-T LHASH
|
||||||
-T LHASH_COMP_FN_TYPE
|
-T LHASH_COMP_FN_TYPE
|
||||||
-T LHASH_DOALL_ARG_FN_TYPE
|
-T LHASH_DOALL_ARG_FN_TYPE
|
||||||
@ -650,9 +642,6 @@
|
|||||||
-T STACK_OF_GENERAL_SUBTREE_
|
-T STACK_OF_GENERAL_SUBTREE_
|
||||||
-T STACK_OF_IPAddressFamily_
|
-T STACK_OF_IPAddressFamily_
|
||||||
-T STACK_OF_IPAddressOrRange_
|
-T STACK_OF_IPAddressOrRange_
|
||||||
-T STACK_OF_KRB5_APREQBODY_
|
|
||||||
-T STACK_OF_KRB5_AUTHENTBODY_
|
|
||||||
-T STACK_OF_KRB5_TKTBODY_
|
|
||||||
-T STACK_OF_MEM_OBJECT_DATA_
|
-T STACK_OF_MEM_OBJECT_DATA_
|
||||||
-T STACK_OF_MIME_HEADER_
|
-T STACK_OF_MIME_HEADER_
|
||||||
-T STACK_OF_MIME_PARAM_
|
-T STACK_OF_MIME_PARAM_
|
||||||
@ -719,26 +708,6 @@
|
|||||||
-T clock_t
|
-T clock_t
|
||||||
-T custom_ext_methods
|
-T custom_ext_methods
|
||||||
-T hm_fragment
|
-T hm_fragment
|
||||||
-T krb5_auth_context
|
|
||||||
-T krb5_authdata
|
|
||||||
-T KRB5_CALLCONV
|
|
||||||
-T krb5_ccache
|
|
||||||
-T krb5_context
|
|
||||||
-T krb5_creds
|
|
||||||
-T krb5_data
|
|
||||||
-T krb5_deltat
|
|
||||||
-T krb5_flags
|
|
||||||
-T krb5_int32
|
|
||||||
-T krb5_keyblock
|
|
||||||
-T krb5_keytab
|
|
||||||
-T krb5_keytab_entry
|
|
||||||
-T krb5_octet
|
|
||||||
-T krb5_principal
|
|
||||||
-T krb5_principal_data
|
|
||||||
-T krb5_rcache
|
|
||||||
-T krb5_ticket
|
|
||||||
-T krb5_ticket_times
|
|
||||||
-T krb5_timestamp
|
|
||||||
-T record_pqueue
|
-T record_pqueue
|
||||||
-T ssl_ctx_st
|
-T ssl_ctx_st
|
||||||
-T ssl_flag_tbl
|
-T ssl_flag_tbl
|
||||||
|
132
util/libeay.num
132
util/libeay.num
@ -1950,8 +1950,8 @@ ASN1_UTF8STRING_it 2527 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTI
|
|||||||
ENGINE_unregister_ciphers 2528 EXIST::FUNCTION:ENGINE
|
ENGINE_unregister_ciphers 2528 EXIST::FUNCTION:ENGINE
|
||||||
ENGINE_get_ciphers 2529 EXIST::FUNCTION:ENGINE
|
ENGINE_get_ciphers 2529 EXIST::FUNCTION:ENGINE
|
||||||
d2i_OCSP_BASICRESP 2530 EXIST::FUNCTION:
|
d2i_OCSP_BASICRESP 2530 EXIST::FUNCTION:
|
||||||
KRB5_CHECKSUM_it 2531 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
KRB5_CHECKSUM_it 2531 NOEXIST::FUNCTION:
|
||||||
KRB5_CHECKSUM_it 2531 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
KRB5_CHECKSUM_it 2531 NOEXIST::FUNCTION:
|
||||||
EC_POINT_add 2532 EXIST::FUNCTION:EC
|
EC_POINT_add 2532 EXIST::FUNCTION:EC
|
||||||
ASN1_item_ex_i2d 2533 EXIST::FUNCTION:
|
ASN1_item_ex_i2d 2533 EXIST::FUNCTION:
|
||||||
OCSP_CERTID_it 2534 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
OCSP_CERTID_it 2534 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
||||||
@ -1982,8 +1982,8 @@ OCSP_SIGNATURE_it 2554 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTI
|
|||||||
X509_CRL_it 2555 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
X509_CRL_it 2555 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
||||||
X509_CRL_it 2555 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
X509_CRL_it 2555 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
||||||
OCSP_BASICRESP_add_ext 2556 EXIST::FUNCTION:
|
OCSP_BASICRESP_add_ext 2556 EXIST::FUNCTION:
|
||||||
KRB5_ENCKEY_it 2557 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
KRB5_ENCKEY_it 2557 NOEXIST::FUNCTION:
|
||||||
KRB5_ENCKEY_it 2557 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
KRB5_ENCKEY_it 2557 NOEXIST::FUNCTION:
|
||||||
UI_method_set_closer 2558 EXIST::FUNCTION:
|
UI_method_set_closer 2558 EXIST::FUNCTION:
|
||||||
X509_STORE_set_purpose 2559 EXIST::FUNCTION:
|
X509_STORE_set_purpose 2559 EXIST::FUNCTION:
|
||||||
i2d_ASN1_GENERALSTRING 2560 EXIST::FUNCTION:
|
i2d_ASN1_GENERALSTRING 2560 EXIST::FUNCTION:
|
||||||
@ -1996,11 +1996,11 @@ _ossl_old_des_random_key 2566 NOEXIST::FUNCTION:
|
|||||||
ASN1_T61STRING_it 2567 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
ASN1_T61STRING_it 2567 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
||||||
ASN1_T61STRING_it 2567 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
ASN1_T61STRING_it 2567 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
||||||
EC_GROUP_method_of 2568 EXIST::FUNCTION:EC
|
EC_GROUP_method_of 2568 EXIST::FUNCTION:EC
|
||||||
i2d_KRB5_APREQ 2569 EXIST::FUNCTION:
|
i2d_KRB5_APREQ 2569 NOEXIST::FUNCTION:
|
||||||
_ossl_old_des_encrypt 2570 NOEXIST::FUNCTION:
|
_ossl_old_des_encrypt 2570 NOEXIST::FUNCTION:
|
||||||
ASN1_PRINTABLE_new 2571 EXIST::FUNCTION:
|
ASN1_PRINTABLE_new 2571 EXIST::FUNCTION:
|
||||||
HMAC_Init_ex 2572 EXIST::FUNCTION:
|
HMAC_Init_ex 2572 EXIST::FUNCTION:
|
||||||
d2i_KRB5_AUTHENT 2573 EXIST::FUNCTION:
|
d2i_KRB5_AUTHENT 2573 NOEXIST::FUNCTION:
|
||||||
OCSP_archive_cutoff_new 2574 EXIST::FUNCTION:
|
OCSP_archive_cutoff_new 2574 EXIST::FUNCTION:
|
||||||
EC_POINT_set_Jprojective_coordinates_GFp 2575 EXIST:!VMS:FUNCTION:EC
|
EC_POINT_set_Jprojective_coordinates_GFp 2575 EXIST:!VMS:FUNCTION:EC
|
||||||
EC_POINT_set_Jproj_coords_GFp 2575 EXIST:VMS:FUNCTION:EC
|
EC_POINT_set_Jproj_coords_GFp 2575 EXIST:VMS:FUNCTION:EC
|
||||||
@ -2017,11 +2017,11 @@ ENGINE_register_DH 2584 EXIST::FUNCTION:ENGINE
|
|||||||
UI_construct_prompt 2585 EXIST::FUNCTION:
|
UI_construct_prompt 2585 EXIST::FUNCTION:
|
||||||
X509_STORE_set_trust 2586 EXIST::FUNCTION:
|
X509_STORE_set_trust 2586 EXIST::FUNCTION:
|
||||||
UI_dup_input_string 2587 EXIST::FUNCTION:
|
UI_dup_input_string 2587 EXIST::FUNCTION:
|
||||||
d2i_KRB5_APREQ 2588 EXIST::FUNCTION:
|
d2i_KRB5_APREQ 2588 NOEXIST::FUNCTION:
|
||||||
EVP_MD_CTX_copy_ex 2589 EXIST::FUNCTION:
|
EVP_MD_CTX_copy_ex 2589 EXIST::FUNCTION:
|
||||||
OCSP_request_is_signed 2590 EXIST::FUNCTION:
|
OCSP_request_is_signed 2590 EXIST::FUNCTION:
|
||||||
i2d_OCSP_REQINFO 2591 EXIST::FUNCTION:
|
i2d_OCSP_REQINFO 2591 EXIST::FUNCTION:
|
||||||
KRB5_ENCKEY_free 2592 EXIST::FUNCTION:
|
KRB5_ENCKEY_free 2592 NOEXIST::FUNCTION:
|
||||||
OCSP_resp_get0 2593 EXIST::FUNCTION:
|
OCSP_resp_get0 2593 EXIST::FUNCTION:
|
||||||
GENERAL_NAME_it 2594 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
GENERAL_NAME_it 2594 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
||||||
GENERAL_NAME_it 2594 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
GENERAL_NAME_it 2594 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
||||||
@ -2059,10 +2059,10 @@ ENGINE_register_ciphers 2620 EXIST::FUNCTION:ENGINE
|
|||||||
BN_mod_lshift_quick 2621 EXIST::FUNCTION:
|
BN_mod_lshift_quick 2621 EXIST::FUNCTION:
|
||||||
DSO_set_filename 2622 EXIST::FUNCTION:
|
DSO_set_filename 2622 EXIST::FUNCTION:
|
||||||
ASN1_item_free 2623 EXIST::FUNCTION:
|
ASN1_item_free 2623 EXIST::FUNCTION:
|
||||||
KRB5_TKTBODY_free 2624 EXIST::FUNCTION:
|
KRB5_TKTBODY_free 2624 NOEXIST::FUNCTION:
|
||||||
AUTHORITY_KEYID_it 2625 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
AUTHORITY_KEYID_it 2625 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
||||||
AUTHORITY_KEYID_it 2625 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
AUTHORITY_KEYID_it 2625 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
||||||
KRB5_APREQBODY_new 2626 EXIST::FUNCTION:
|
KRB5_APREQBODY_new 2626 NOEXIST::FUNCTION:
|
||||||
X509V3_EXT_REQ_add_nconf 2627 EXIST::FUNCTION:
|
X509V3_EXT_REQ_add_nconf 2627 EXIST::FUNCTION:
|
||||||
ENGINE_ctrl_cmd_string 2628 EXIST::FUNCTION:ENGINE
|
ENGINE_ctrl_cmd_string 2628 EXIST::FUNCTION:ENGINE
|
||||||
i2d_OCSP_RESPDATA 2629 EXIST::FUNCTION:
|
i2d_OCSP_RESPDATA 2629 EXIST::FUNCTION:
|
||||||
@ -2071,7 +2071,7 @@ EXTENDED_KEY_USAGE_free 2631 EXIST::FUNCTION:
|
|||||||
PKCS7_ATTR_SIGN_it 2632 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
PKCS7_ATTR_SIGN_it 2632 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
||||||
PKCS7_ATTR_SIGN_it 2632 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
PKCS7_ATTR_SIGN_it 2632 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
||||||
UI_add_error_string 2633 EXIST::FUNCTION:
|
UI_add_error_string 2633 EXIST::FUNCTION:
|
||||||
KRB5_CHECKSUM_free 2634 EXIST::FUNCTION:
|
KRB5_CHECKSUM_free 2634 NOEXIST::FUNCTION:
|
||||||
OCSP_REQUEST_get_ext 2635 EXIST::FUNCTION:
|
OCSP_REQUEST_get_ext 2635 EXIST::FUNCTION:
|
||||||
ENGINE_load_ubsec 2636 EXIST::FUNCTION:ENGINE,STATIC_ENGINE
|
ENGINE_load_ubsec 2636 EXIST::FUNCTION:ENGINE,STATIC_ENGINE
|
||||||
ENGINE_register_all_digests 2637 EXIST::FUNCTION:ENGINE
|
ENGINE_register_all_digests 2637 EXIST::FUNCTION:ENGINE
|
||||||
@ -2085,7 +2085,7 @@ X509_REVOKED_it 2642 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIA
|
|||||||
X509_REVOKED_it 2642 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
X509_REVOKED_it 2642 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
||||||
ASN1_STRING_encode 2643 NOEXIST::FUNCTION:
|
ASN1_STRING_encode 2643 NOEXIST::FUNCTION:
|
||||||
EVP_aes_128_ecb 2644 EXIST::FUNCTION:AES
|
EVP_aes_128_ecb 2644 EXIST::FUNCTION:AES
|
||||||
KRB5_AUTHENT_free 2645 EXIST::FUNCTION:
|
KRB5_AUTHENT_free 2645 NOEXIST::FUNCTION:
|
||||||
OCSP_BASICRESP_get_ext_by_critical 2646 EXIST:!VMS:FUNCTION:
|
OCSP_BASICRESP_get_ext_by_critical 2646 EXIST:!VMS:FUNCTION:
|
||||||
OCSP_BASICRESP_get_ext_by_crit 2646 EXIST:VMS:FUNCTION:
|
OCSP_BASICRESP_get_ext_by_crit 2646 EXIST:VMS:FUNCTION:
|
||||||
OCSP_cert_status_str 2647 EXIST::FUNCTION:
|
OCSP_cert_status_str 2647 EXIST::FUNCTION:
|
||||||
@ -2113,7 +2113,7 @@ ENGINE_unregister_DSA 2665 EXIST::FUNCTION:ENGINE
|
|||||||
_ossl_old_des_key_sched 2666 NOEXIST::FUNCTION:
|
_ossl_old_des_key_sched 2666 NOEXIST::FUNCTION:
|
||||||
X509_EXTENSION_it 2667 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
X509_EXTENSION_it 2667 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
||||||
X509_EXTENSION_it 2667 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
X509_EXTENSION_it 2667 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
||||||
i2d_KRB5_AUTHENT 2668 EXIST::FUNCTION:
|
i2d_KRB5_AUTHENT 2668 NOEXIST::FUNCTION:
|
||||||
SXNETID_it 2669 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
SXNETID_it 2669 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
||||||
SXNETID_it 2669 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
SXNETID_it 2669 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
||||||
d2i_OCSP_SINGLERESP 2670 EXIST::FUNCTION:
|
d2i_OCSP_SINGLERESP 2670 EXIST::FUNCTION:
|
||||||
@ -2123,7 +2123,7 @@ _ossl_old_des_ofb64_encrypt 2673 NOEXIST::FUNCTION:
|
|||||||
d2i_EXTENDED_KEY_USAGE 2674 EXIST::FUNCTION:
|
d2i_EXTENDED_KEY_USAGE 2674 EXIST::FUNCTION:
|
||||||
ERR_print_errors_cb 2675 EXIST::FUNCTION:
|
ERR_print_errors_cb 2675 EXIST::FUNCTION:
|
||||||
ENGINE_set_ciphers 2676 EXIST::FUNCTION:ENGINE
|
ENGINE_set_ciphers 2676 EXIST::FUNCTION:ENGINE
|
||||||
d2i_KRB5_APREQBODY 2677 EXIST::FUNCTION:
|
d2i_KRB5_APREQBODY 2677 NOEXIST::FUNCTION:
|
||||||
UI_method_get_flusher 2678 EXIST::FUNCTION:
|
UI_method_get_flusher 2678 EXIST::FUNCTION:
|
||||||
X509_PUBKEY_it 2679 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
X509_PUBKEY_it 2679 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
||||||
X509_PUBKEY_it 2679 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
X509_PUBKEY_it 2679 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
||||||
@ -2133,14 +2133,14 @@ PKCS7_ENCRYPT_it 2681 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTI
|
|||||||
i2d_OCSP_RESPONSE 2682 EXIST::FUNCTION:
|
i2d_OCSP_RESPONSE 2682 EXIST::FUNCTION:
|
||||||
EC_GROUP_get_cofactor 2683 EXIST::FUNCTION:EC
|
EC_GROUP_get_cofactor 2683 EXIST::FUNCTION:EC
|
||||||
PKCS12_unpack_p7data 2684 EXIST::FUNCTION:
|
PKCS12_unpack_p7data 2684 EXIST::FUNCTION:
|
||||||
d2i_KRB5_AUTHDATA 2685 EXIST::FUNCTION:
|
d2i_KRB5_AUTHDATA 2685 NOEXIST::FUNCTION:
|
||||||
OCSP_copy_nonce 2686 EXIST::FUNCTION:
|
OCSP_copy_nonce 2686 EXIST::FUNCTION:
|
||||||
KRB5_AUTHDATA_new 2687 EXIST::FUNCTION:
|
KRB5_AUTHDATA_new 2687 NOEXIST::FUNCTION:
|
||||||
OCSP_RESPDATA_new 2688 EXIST::FUNCTION:
|
OCSP_RESPDATA_new 2688 EXIST::FUNCTION:
|
||||||
EC_GFp_mont_method 2689 EXIST::FUNCTION:EC
|
EC_GFp_mont_method 2689 EXIST::FUNCTION:EC
|
||||||
OCSP_REVOKEDINFO_free 2690 EXIST::FUNCTION:
|
OCSP_REVOKEDINFO_free 2690 EXIST::FUNCTION:
|
||||||
UI_get_ex_data 2691 EXIST::FUNCTION:
|
UI_get_ex_data 2691 EXIST::FUNCTION:
|
||||||
KRB5_APREQBODY_free 2692 EXIST::FUNCTION:
|
KRB5_APREQBODY_free 2692 NOEXIST::FUNCTION:
|
||||||
EC_GROUP_get0_generator 2693 EXIST::FUNCTION:EC
|
EC_GROUP_get0_generator 2693 EXIST::FUNCTION:EC
|
||||||
UI_get_default_method 2694 EXIST::FUNCTION:
|
UI_get_default_method 2694 EXIST::FUNCTION:
|
||||||
X509V3_set_nconf 2695 EXIST::FUNCTION:
|
X509V3_set_nconf 2695 EXIST::FUNCTION:
|
||||||
@ -2148,7 +2148,7 @@ PKCS12_item_i2d_encrypt 2696 EXIST::FUNCTION:
|
|||||||
X509_add1_ext_i2d 2697 EXIST::FUNCTION:
|
X509_add1_ext_i2d 2697 EXIST::FUNCTION:
|
||||||
PKCS7_SIGNER_INFO_it 2698 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
PKCS7_SIGNER_INFO_it 2698 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
||||||
PKCS7_SIGNER_INFO_it 2698 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
PKCS7_SIGNER_INFO_it 2698 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
||||||
KRB5_PRINCNAME_new 2699 EXIST::FUNCTION:
|
KRB5_PRINCNAME_new 2699 NOEXIST::FUNCTION:
|
||||||
PKCS12_SAFEBAG_it 2700 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
PKCS12_SAFEBAG_it 2700 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
||||||
PKCS12_SAFEBAG_it 2700 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
PKCS12_SAFEBAG_it 2700 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
||||||
EC_GROUP_get_order 2701 EXIST::FUNCTION:EC
|
EC_GROUP_get_order 2701 EXIST::FUNCTION:EC
|
||||||
@ -2192,8 +2192,8 @@ X509_ATTRIBUTE_it 2732 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIA
|
|||||||
X509_ATTRIBUTE_it 2732 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
X509_ATTRIBUTE_it 2732 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
||||||
OCSP_ONEREQ_get_ext_by_NID 2733 EXIST::FUNCTION:
|
OCSP_ONEREQ_get_ext_by_NID 2733 EXIST::FUNCTION:
|
||||||
PKCS12_decrypt_skey 2734 EXIST::FUNCTION:
|
PKCS12_decrypt_skey 2734 EXIST::FUNCTION:
|
||||||
KRB5_AUTHENT_it 2735 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
KRB5_AUTHENT_it 2735 NOEXIST::FUNCTION:
|
||||||
KRB5_AUTHENT_it 2735 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
KRB5_AUTHENT_it 2735 NOEXIST::FUNCTION:
|
||||||
UI_dup_error_string 2736 EXIST::FUNCTION:
|
UI_dup_error_string 2736 EXIST::FUNCTION:
|
||||||
RSAPublicKey_it 2737 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:RSA
|
RSAPublicKey_it 2737 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:RSA
|
||||||
RSAPublicKey_it 2737 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:RSA
|
RSAPublicKey_it 2737 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:RSA
|
||||||
@ -2210,8 +2210,8 @@ PKCS12_unpack_p7encdata 2746 EXIST::FUNCTION:
|
|||||||
HMAC_CTX_init 2747 EXIST::FUNCTION:
|
HMAC_CTX_init 2747 EXIST::FUNCTION:
|
||||||
ENGINE_get_digest 2748 EXIST::FUNCTION:ENGINE
|
ENGINE_get_digest 2748 EXIST::FUNCTION:ENGINE
|
||||||
OCSP_RESPONSE_print 2749 EXIST::FUNCTION:
|
OCSP_RESPONSE_print 2749 EXIST::FUNCTION:
|
||||||
KRB5_TKTBODY_it 2750 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
KRB5_TKTBODY_it 2750 NOEXIST::FUNCTION:
|
||||||
KRB5_TKTBODY_it 2750 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
KRB5_TKTBODY_it 2750 NOEXIST::FUNCTION:
|
||||||
ACCESS_DESCRIPTION_it 2751 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
ACCESS_DESCRIPTION_it 2751 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
||||||
ACCESS_DESCRIPTION_it 2751 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
ACCESS_DESCRIPTION_it 2751 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
||||||
PKCS7_ISSUER_AND_SERIAL_it 2752 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
PKCS7_ISSUER_AND_SERIAL_it 2752 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
||||||
@ -2239,12 +2239,12 @@ d2i_OCSP_CRLID 2768 EXIST::FUNCTION:
|
|||||||
EC_POINT_is_on_curve 2769 EXIST::FUNCTION:EC
|
EC_POINT_is_on_curve 2769 EXIST::FUNCTION:EC
|
||||||
CRYPTO_set_locked_mem_ex_functions 2770 EXIST:!VMS:FUNCTION:
|
CRYPTO_set_locked_mem_ex_functions 2770 EXIST:!VMS:FUNCTION:
|
||||||
CRYPTO_set_locked_mem_ex_funcs 2770 EXIST:VMS:FUNCTION:
|
CRYPTO_set_locked_mem_ex_funcs 2770 EXIST:VMS:FUNCTION:
|
||||||
d2i_KRB5_CHECKSUM 2771 EXIST::FUNCTION:
|
d2i_KRB5_CHECKSUM 2771 NOEXIST::FUNCTION:
|
||||||
ASN1_item_dup 2772 EXIST::FUNCTION:
|
ASN1_item_dup 2772 EXIST::FUNCTION:
|
||||||
X509_it 2773 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
X509_it 2773 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
||||||
X509_it 2773 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
X509_it 2773 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
||||||
BN_mod_add 2774 EXIST::FUNCTION:
|
BN_mod_add 2774 EXIST::FUNCTION:
|
||||||
KRB5_AUTHDATA_free 2775 EXIST::FUNCTION:
|
KRB5_AUTHDATA_free 2775 NOEXIST::FUNCTION:
|
||||||
_ossl_old_des_cbc_cksum 2776 NOEXIST::FUNCTION:
|
_ossl_old_des_cbc_cksum 2776 NOEXIST::FUNCTION:
|
||||||
ASN1_item_verify 2777 EXIST::FUNCTION:
|
ASN1_item_verify 2777 EXIST::FUNCTION:
|
||||||
CRYPTO_set_mem_ex_functions 2778 EXIST::FUNCTION:
|
CRYPTO_set_mem_ex_functions 2778 EXIST::FUNCTION:
|
||||||
@ -2265,8 +2265,8 @@ ASN1_BMPSTRING_it 2787 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTI
|
|||||||
ASN1_tag2bit 2788 EXIST::FUNCTION:
|
ASN1_tag2bit 2788 EXIST::FUNCTION:
|
||||||
UI_method_set_flusher 2789 EXIST::FUNCTION:
|
UI_method_set_flusher 2789 EXIST::FUNCTION:
|
||||||
X509_ocspid_print 2790 EXIST::FUNCTION:
|
X509_ocspid_print 2790 EXIST::FUNCTION:
|
||||||
KRB5_ENCDATA_it 2791 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
KRB5_ENCDATA_it 2791 NOEXIST::FUNCTION:
|
||||||
KRB5_ENCDATA_it 2791 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
KRB5_ENCDATA_it 2791 NOEXIST::FUNCTION:
|
||||||
ENGINE_get_load_pubkey_function 2792 EXIST::FUNCTION:ENGINE
|
ENGINE_get_load_pubkey_function 2792 EXIST::FUNCTION:ENGINE
|
||||||
UI_add_user_data 2793 EXIST::FUNCTION:
|
UI_add_user_data 2793 EXIST::FUNCTION:
|
||||||
OCSP_REQUEST_delete_ext 2794 EXIST::FUNCTION:
|
OCSP_REQUEST_delete_ext 2794 EXIST::FUNCTION:
|
||||||
@ -2292,7 +2292,7 @@ ASN1_FBOOLEAN_it 2806 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTI
|
|||||||
UI_set_ex_data 2807 EXIST::FUNCTION:
|
UI_set_ex_data 2807 EXIST::FUNCTION:
|
||||||
_ossl_old_des_string_to_key 2808 NOEXIST::FUNCTION:
|
_ossl_old_des_string_to_key 2808 NOEXIST::FUNCTION:
|
||||||
ENGINE_register_all_RSA 2809 EXIST::FUNCTION:ENGINE
|
ENGINE_register_all_RSA 2809 EXIST::FUNCTION:ENGINE
|
||||||
d2i_KRB5_PRINCNAME 2810 EXIST::FUNCTION:
|
d2i_KRB5_PRINCNAME 2810 NOEXIST::FUNCTION:
|
||||||
OCSP_RESPBYTES_it 2811 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
OCSP_RESPBYTES_it 2811 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
||||||
OCSP_RESPBYTES_it 2811 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
OCSP_RESPBYTES_it 2811 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
||||||
X509_CINF_it 2812 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
X509_CINF_it 2812 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
||||||
@ -2303,7 +2303,7 @@ d2i_OCSP_SERVICELOC 2815 EXIST::FUNCTION:
|
|||||||
ENGINE_get_digests 2816 EXIST::FUNCTION:ENGINE
|
ENGINE_get_digests 2816 EXIST::FUNCTION:ENGINE
|
||||||
_ossl_old_des_set_odd_parity 2817 NOEXIST::FUNCTION:
|
_ossl_old_des_set_odd_parity 2817 NOEXIST::FUNCTION:
|
||||||
OCSP_RESPDATA_free 2818 EXIST::FUNCTION:
|
OCSP_RESPDATA_free 2818 EXIST::FUNCTION:
|
||||||
d2i_KRB5_TICKET 2819 EXIST::FUNCTION:
|
d2i_KRB5_TICKET 2819 NOEXIST::FUNCTION:
|
||||||
OTHERNAME_it 2820 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
OTHERNAME_it 2820 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
||||||
OTHERNAME_it 2820 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
OTHERNAME_it 2820 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
||||||
EVP_MD_CTX_cleanup 2821 EXIST::FUNCTION:
|
EVP_MD_CTX_cleanup 2821 EXIST::FUNCTION:
|
||||||
@ -2327,10 +2327,10 @@ DISPLAYTEXT_it 2836 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTI
|
|||||||
X509_CRL_set_lastUpdate 2837 EXIST::FUNCTION:
|
X509_CRL_set_lastUpdate 2837 EXIST::FUNCTION:
|
||||||
OCSP_BASICRESP_free 2838 EXIST::FUNCTION:
|
OCSP_BASICRESP_free 2838 EXIST::FUNCTION:
|
||||||
OCSP_BASICRESP_add1_ext_i2d 2839 EXIST::FUNCTION:
|
OCSP_BASICRESP_add1_ext_i2d 2839 EXIST::FUNCTION:
|
||||||
d2i_KRB5_AUTHENTBODY 2840 EXIST::FUNCTION:
|
d2i_KRB5_AUTHENTBODY 2840 NOEXIST::FUNCTION:
|
||||||
CRYPTO_set_ex_data_implementation 2841 EXIST:!VMS:FUNCTION:
|
CRYPTO_set_ex_data_implementation 2841 EXIST:!VMS:FUNCTION:
|
||||||
CRYPTO_set_ex_data_impl 2841 EXIST:VMS:FUNCTION:
|
CRYPTO_set_ex_data_impl 2841 EXIST:VMS:FUNCTION:
|
||||||
KRB5_ENCDATA_new 2842 EXIST::FUNCTION:
|
KRB5_ENCDATA_new 2842 NOEXIST::FUNCTION:
|
||||||
DSO_up_ref 2843 EXIST::FUNCTION:
|
DSO_up_ref 2843 EXIST::FUNCTION:
|
||||||
OCSP_crl_reason_str 2844 EXIST::FUNCTION:
|
OCSP_crl_reason_str 2844 EXIST::FUNCTION:
|
||||||
UI_get0_result_string 2845 EXIST::FUNCTION:
|
UI_get0_result_string 2845 EXIST::FUNCTION:
|
||||||
@ -2342,7 +2342,7 @@ ERR_load_EC_strings 2849 EXIST::FUNCTION:EC
|
|||||||
UI_get0_action_string 2850 EXIST::FUNCTION:
|
UI_get0_action_string 2850 EXIST::FUNCTION:
|
||||||
OCSP_ONEREQ_get_ext 2851 EXIST::FUNCTION:
|
OCSP_ONEREQ_get_ext 2851 EXIST::FUNCTION:
|
||||||
EC_POINT_method_of 2852 EXIST::FUNCTION:EC
|
EC_POINT_method_of 2852 EXIST::FUNCTION:EC
|
||||||
i2d_KRB5_APREQBODY 2853 EXIST::FUNCTION:
|
i2d_KRB5_APREQBODY 2853 NOEXIST::FUNCTION:
|
||||||
_ossl_old_des_ecb3_encrypt 2854 NOEXIST::FUNCTION:
|
_ossl_old_des_ecb3_encrypt 2854 NOEXIST::FUNCTION:
|
||||||
CRYPTO_get_mem_ex_functions 2855 EXIST::FUNCTION:
|
CRYPTO_get_mem_ex_functions 2855 EXIST::FUNCTION:
|
||||||
ENGINE_get_ex_data 2856 EXIST::FUNCTION:ENGINE
|
ENGINE_get_ex_data 2856 EXIST::FUNCTION:ENGINE
|
||||||
@ -2398,7 +2398,7 @@ OCSP_basic_sign 2897 EXIST::FUNCTION:
|
|||||||
i2d_OCSP_RESPID 2898 EXIST::FUNCTION:
|
i2d_OCSP_RESPID 2898 EXIST::FUNCTION:
|
||||||
OCSP_check_nonce 2899 EXIST::FUNCTION:
|
OCSP_check_nonce 2899 EXIST::FUNCTION:
|
||||||
ENGINE_ctrl_cmd 2900 EXIST::FUNCTION:ENGINE
|
ENGINE_ctrl_cmd 2900 EXIST::FUNCTION:ENGINE
|
||||||
d2i_KRB5_ENCKEY 2901 EXIST::FUNCTION:
|
d2i_KRB5_ENCKEY 2901 NOEXIST::FUNCTION:
|
||||||
OCSP_parse_url 2902 EXIST::FUNCTION:
|
OCSP_parse_url 2902 EXIST::FUNCTION:
|
||||||
OCSP_SINGLERESP_get_ext 2903 EXIST::FUNCTION:
|
OCSP_SINGLERESP_get_ext 2903 EXIST::FUNCTION:
|
||||||
OCSP_CRLID_free 2904 EXIST::FUNCTION:
|
OCSP_CRLID_free 2904 EXIST::FUNCTION:
|
||||||
@ -2458,7 +2458,7 @@ DIST_POINT_it 2950 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIA
|
|||||||
DIST_POINT_it 2950 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
DIST_POINT_it 2950 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
||||||
OCSP_SINGLERESP_it 2951 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
OCSP_SINGLERESP_it 2951 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
||||||
OCSP_SINGLERESP_it 2951 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
OCSP_SINGLERESP_it 2951 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
||||||
d2i_KRB5_TKTBODY 2952 EXIST::FUNCTION:
|
d2i_KRB5_TKTBODY 2952 NOEXIST::FUNCTION:
|
||||||
EC_POINT_cmp 2953 EXIST::FUNCTION:EC
|
EC_POINT_cmp 2953 EXIST::FUNCTION:EC
|
||||||
OCSP_REVOKEDINFO_new 2954 EXIST::FUNCTION:
|
OCSP_REVOKEDINFO_new 2954 EXIST::FUNCTION:
|
||||||
i2d_OCSP_CERTSTATUS 2955 EXIST::FUNCTION:
|
i2d_OCSP_CERTSTATUS 2955 EXIST::FUNCTION:
|
||||||
@ -2469,7 +2469,7 @@ UI_set_method 2959 EXIST::FUNCTION:
|
|||||||
OCSP_id_get0_info 2960 EXIST::FUNCTION:
|
OCSP_id_get0_info 2960 EXIST::FUNCTION:
|
||||||
BN_mod_sqrt 2961 EXIST::FUNCTION:
|
BN_mod_sqrt 2961 EXIST::FUNCTION:
|
||||||
EC_GROUP_copy 2962 EXIST::FUNCTION:EC
|
EC_GROUP_copy 2962 EXIST::FUNCTION:EC
|
||||||
KRB5_ENCDATA_free 2963 EXIST::FUNCTION:
|
KRB5_ENCDATA_free 2963 NOEXIST::FUNCTION:
|
||||||
_ossl_old_des_cfb_encrypt 2964 NOEXIST::FUNCTION:
|
_ossl_old_des_cfb_encrypt 2964 NOEXIST::FUNCTION:
|
||||||
OCSP_SINGLERESP_get_ext_by_OBJ 2965 EXIST::FUNCTION:
|
OCSP_SINGLERESP_get_ext_by_OBJ 2965 EXIST::FUNCTION:
|
||||||
OCSP_cert_to_id 2966 EXIST::FUNCTION:
|
OCSP_cert_to_id 2966 EXIST::FUNCTION:
|
||||||
@ -2484,19 +2484,19 @@ PKCS12_BAGS_it 2972 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTI
|
|||||||
OCSP_url_svcloc_new 2973 EXIST::FUNCTION:
|
OCSP_url_svcloc_new 2973 EXIST::FUNCTION:
|
||||||
ASN1_template_free 2974 NOEXIST::FUNCTION:
|
ASN1_template_free 2974 NOEXIST::FUNCTION:
|
||||||
OCSP_SINGLERESP_add_ext 2975 EXIST::FUNCTION:
|
OCSP_SINGLERESP_add_ext 2975 EXIST::FUNCTION:
|
||||||
KRB5_AUTHENTBODY_it 2976 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
KRB5_AUTHENTBODY_it 2976 NOEXIST::FUNCTION:
|
||||||
KRB5_AUTHENTBODY_it 2976 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
KRB5_AUTHENTBODY_it 2976 NOEXIST::FUNCTION:
|
||||||
X509_supported_extension 2977 EXIST::FUNCTION:
|
X509_supported_extension 2977 EXIST::FUNCTION:
|
||||||
i2d_KRB5_AUTHDATA 2978 EXIST::FUNCTION:
|
i2d_KRB5_AUTHDATA 2978 NOEXIST::FUNCTION:
|
||||||
UI_method_get_opener 2979 EXIST::FUNCTION:
|
UI_method_get_opener 2979 EXIST::FUNCTION:
|
||||||
ENGINE_set_ex_data 2980 EXIST::FUNCTION:ENGINE
|
ENGINE_set_ex_data 2980 EXIST::FUNCTION:ENGINE
|
||||||
OCSP_REQUEST_print 2981 EXIST::FUNCTION:
|
OCSP_REQUEST_print 2981 EXIST::FUNCTION:
|
||||||
CBIGNUM_it 2982 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
CBIGNUM_it 2982 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
||||||
CBIGNUM_it 2982 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
CBIGNUM_it 2982 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
||||||
KRB5_TICKET_new 2983 EXIST::FUNCTION:
|
KRB5_TICKET_new 2983 NOEXIST::FUNCTION:
|
||||||
KRB5_APREQ_new 2984 EXIST::FUNCTION:
|
KRB5_APREQ_new 2984 NOEXIST::FUNCTION:
|
||||||
EC_GROUP_get_curve_GFp 2985 EXIST::FUNCTION:EC
|
EC_GROUP_get_curve_GFp 2985 EXIST::FUNCTION:EC
|
||||||
KRB5_ENCKEY_new 2986 EXIST::FUNCTION:
|
KRB5_ENCKEY_new 2986 NOEXIST::FUNCTION:
|
||||||
ASN1_template_d2i 2987 NOEXIST::FUNCTION:
|
ASN1_template_d2i 2987 NOEXIST::FUNCTION:
|
||||||
_ossl_old_des_quad_cksum 2988 NOEXIST::FUNCTION:
|
_ossl_old_des_quad_cksum 2988 NOEXIST::FUNCTION:
|
||||||
OCSP_single_get0_status 2989 EXIST::FUNCTION:
|
OCSP_single_get0_status 2989 EXIST::FUNCTION:
|
||||||
@ -2509,7 +2509,7 @@ OCSP_RESPID_it 2994 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIA
|
|||||||
OCSP_RESPID_it 2994 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
OCSP_RESPID_it 2994 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
||||||
EC_GROUP_new 2995 EXIST::FUNCTION:EC
|
EC_GROUP_new 2995 EXIST::FUNCTION:EC
|
||||||
EVP_aes_256_cbc 2996 EXIST::FUNCTION:AES
|
EVP_aes_256_cbc 2996 EXIST::FUNCTION:AES
|
||||||
i2d_KRB5_PRINCNAME 2997 EXIST::FUNCTION:
|
i2d_KRB5_PRINCNAME 2997 NOEXIST::FUNCTION:
|
||||||
_ossl_old_des_encrypt2 2998 NOEXIST::FUNCTION:
|
_ossl_old_des_encrypt2 2998 NOEXIST::FUNCTION:
|
||||||
_ossl_old_des_encrypt3 2999 NOEXIST::FUNCTION:
|
_ossl_old_des_encrypt3 2999 NOEXIST::FUNCTION:
|
||||||
PKCS8_PRIV_KEY_INFO_it 3000 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
PKCS8_PRIV_KEY_INFO_it 3000 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
||||||
@ -2518,7 +2518,7 @@ OCSP_REQINFO_it 3001 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIA
|
|||||||
OCSP_REQINFO_it 3001 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
OCSP_REQINFO_it 3001 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
||||||
PBEPARAM_it 3002 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
PBEPARAM_it 3002 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
||||||
PBEPARAM_it 3002 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
PBEPARAM_it 3002 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
||||||
KRB5_AUTHENTBODY_new 3003 EXIST::FUNCTION:
|
KRB5_AUTHENTBODY_new 3003 NOEXIST::FUNCTION:
|
||||||
X509_CRL_add0_revoked 3004 EXIST::FUNCTION:
|
X509_CRL_add0_revoked 3004 EXIST::FUNCTION:
|
||||||
EDIPARTYNAME_it 3005 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
EDIPARTYNAME_it 3005 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
||||||
EDIPARTYNAME_it 3005 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
EDIPARTYNAME_it 3005 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
||||||
@ -2536,7 +2536,7 @@ OCSP_BASICRESP_get_ext_count 3014 EXIST::FUNCTION:
|
|||||||
ASN1_ENUMERATED_it 3015 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
ASN1_ENUMERATED_it 3015 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
||||||
ASN1_ENUMERATED_it 3015 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
ASN1_ENUMERATED_it 3015 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
||||||
UI_set_result 3016 EXIST::FUNCTION:
|
UI_set_result 3016 EXIST::FUNCTION:
|
||||||
i2d_KRB5_TICKET 3017 EXIST::FUNCTION:
|
i2d_KRB5_TICKET 3017 NOEXIST::FUNCTION:
|
||||||
X509_print_ex_fp 3018 EXIST::FUNCTION:STDIO
|
X509_print_ex_fp 3018 EXIST::FUNCTION:STDIO
|
||||||
EVP_CIPHER_CTX_set_padding 3019 EXIST::FUNCTION:
|
EVP_CIPHER_CTX_set_padding 3019 EXIST::FUNCTION:
|
||||||
d2i_OCSP_RESPONSE 3020 EXIST::FUNCTION:
|
d2i_OCSP_RESPONSE 3020 EXIST::FUNCTION:
|
||||||
@ -2546,7 +2546,7 @@ _ossl_old_des_enc_write 3022 NOEXIST::FUNCTION:
|
|||||||
OCSP_RESPONSE_new 3023 EXIST::FUNCTION:
|
OCSP_RESPONSE_new 3023 EXIST::FUNCTION:
|
||||||
AES_set_encrypt_key 3024 EXIST::FUNCTION:AES
|
AES_set_encrypt_key 3024 EXIST::FUNCTION:AES
|
||||||
OCSP_resp_count 3025 EXIST::FUNCTION:
|
OCSP_resp_count 3025 EXIST::FUNCTION:
|
||||||
KRB5_CHECKSUM_new 3026 EXIST::FUNCTION:
|
KRB5_CHECKSUM_new 3026 NOEXIST::FUNCTION:
|
||||||
ENGINE_load_cswift 3027 EXIST::FUNCTION:ENGINE,STATIC_ENGINE
|
ENGINE_load_cswift 3027 EXIST::FUNCTION:ENGINE,STATIC_ENGINE
|
||||||
OCSP_onereq_get0_id 3028 EXIST::FUNCTION:
|
OCSP_onereq_get0_id 3028 EXIST::FUNCTION:
|
||||||
ENGINE_set_default_ciphers 3029 EXIST::FUNCTION:ENGINE
|
ENGINE_set_default_ciphers 3029 EXIST::FUNCTION:ENGINE
|
||||||
@ -2561,7 +2561,7 @@ ASN1_ANY_it 3035 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIA
|
|||||||
ASN1_ANY_it 3035 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
ASN1_ANY_it 3035 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
||||||
CRYPTO_ex_data_new_class 3036 EXIST::FUNCTION:
|
CRYPTO_ex_data_new_class 3036 EXIST::FUNCTION:
|
||||||
_ossl_old_des_ncbc_encrypt 3037 NOEXIST::FUNCTION:
|
_ossl_old_des_ncbc_encrypt 3037 NOEXIST::FUNCTION:
|
||||||
i2d_KRB5_TKTBODY 3038 EXIST::FUNCTION:
|
i2d_KRB5_TKTBODY 3038 NOEXIST::FUNCTION:
|
||||||
EC_POINT_clear_free 3039 EXIST::FUNCTION:EC
|
EC_POINT_clear_free 3039 EXIST::FUNCTION:EC
|
||||||
AES_decrypt 3040 EXIST::FUNCTION:AES
|
AES_decrypt 3040 EXIST::FUNCTION:AES
|
||||||
asn1_enc_init 3041 NOEXIST::FUNCTION:
|
asn1_enc_init 3041 NOEXIST::FUNCTION:
|
||||||
@ -2569,10 +2569,10 @@ UI_get_result_maxsize 3042 EXIST::FUNCTION:
|
|||||||
OCSP_CERTID_new 3043 EXIST::FUNCTION:
|
OCSP_CERTID_new 3043 EXIST::FUNCTION:
|
||||||
ENGINE_unregister_RAND 3044 EXIST::FUNCTION:ENGINE
|
ENGINE_unregister_RAND 3044 EXIST::FUNCTION:ENGINE
|
||||||
UI_method_get_closer 3045 EXIST::FUNCTION:
|
UI_method_get_closer 3045 EXIST::FUNCTION:
|
||||||
d2i_KRB5_ENCDATA 3046 EXIST::FUNCTION:
|
d2i_KRB5_ENCDATA 3046 NOEXIST::FUNCTION:
|
||||||
OCSP_request_onereq_count 3047 EXIST::FUNCTION:
|
OCSP_request_onereq_count 3047 EXIST::FUNCTION:
|
||||||
OCSP_basic_verify 3048 EXIST::FUNCTION:
|
OCSP_basic_verify 3048 EXIST::FUNCTION:
|
||||||
KRB5_AUTHENTBODY_free 3049 EXIST::FUNCTION:
|
KRB5_AUTHENTBODY_free 3049 NOEXIST::FUNCTION:
|
||||||
ASN1_item_d2i 3050 EXIST::FUNCTION:
|
ASN1_item_d2i 3050 EXIST::FUNCTION:
|
||||||
ASN1_primitive_free 3051 NOEXIST::FUNCTION:
|
ASN1_primitive_free 3051 NOEXIST::FUNCTION:
|
||||||
i2d_EXTENDED_KEY_USAGE 3052 EXIST::FUNCTION:
|
i2d_EXTENDED_KEY_USAGE 3052 EXIST::FUNCTION:
|
||||||
@ -2586,28 +2586,28 @@ OCSP_accept_responses_new 3058 EXIST::FUNCTION:
|
|||||||
asn1_do_lock 3059 NOEXIST::FUNCTION:
|
asn1_do_lock 3059 NOEXIST::FUNCTION:
|
||||||
PKCS7_ATTR_VERIFY_it 3060 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
PKCS7_ATTR_VERIFY_it 3060 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
||||||
PKCS7_ATTR_VERIFY_it 3060 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
PKCS7_ATTR_VERIFY_it 3060 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
||||||
KRB5_APREQBODY_it 3061 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
KRB5_APREQBODY_it 3061 NOEXIST::FUNCTION:
|
||||||
KRB5_APREQBODY_it 3061 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
KRB5_APREQBODY_it 3061 NOEXIST::FUNCTION:
|
||||||
i2d_OCSP_SINGLERESP 3062 EXIST::FUNCTION:
|
i2d_OCSP_SINGLERESP 3062 EXIST::FUNCTION:
|
||||||
ASN1_item_ex_new 3063 EXIST::FUNCTION:
|
ASN1_item_ex_new 3063 EXIST::FUNCTION:
|
||||||
UI_add_verify_string 3064 EXIST::FUNCTION:
|
UI_add_verify_string 3064 EXIST::FUNCTION:
|
||||||
_ossl_old_des_set_key 3065 NOEXIST::FUNCTION:
|
_ossl_old_des_set_key 3065 NOEXIST::FUNCTION:
|
||||||
KRB5_PRINCNAME_it 3066 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
KRB5_PRINCNAME_it 3066 NOEXIST::FUNCTION:
|
||||||
KRB5_PRINCNAME_it 3066 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
KRB5_PRINCNAME_it 3066 NOEXIST::FUNCTION:
|
||||||
EVP_DecryptInit_ex 3067 EXIST::FUNCTION:
|
EVP_DecryptInit_ex 3067 EXIST::FUNCTION:
|
||||||
i2d_OCSP_CERTID 3068 EXIST::FUNCTION:
|
i2d_OCSP_CERTID 3068 EXIST::FUNCTION:
|
||||||
ASN1_item_d2i_bio 3069 EXIST::FUNCTION:
|
ASN1_item_d2i_bio 3069 EXIST::FUNCTION:
|
||||||
EC_POINT_dbl 3070 EXIST::FUNCTION:EC
|
EC_POINT_dbl 3070 EXIST::FUNCTION:EC
|
||||||
asn1_get_choice_selector 3071 NOEXIST::FUNCTION:
|
asn1_get_choice_selector 3071 NOEXIST::FUNCTION:
|
||||||
i2d_KRB5_CHECKSUM 3072 EXIST::FUNCTION:
|
i2d_KRB5_CHECKSUM 3072 NOEXIST::FUNCTION:
|
||||||
ENGINE_set_table_flags 3073 EXIST::FUNCTION:ENGINE
|
ENGINE_set_table_flags 3073 EXIST::FUNCTION:ENGINE
|
||||||
AES_options 3074 EXIST::FUNCTION:AES
|
AES_options 3074 EXIST::FUNCTION:AES
|
||||||
ENGINE_load_chil 3075 EXIST::FUNCTION:ENGINE,STATIC_ENGINE
|
ENGINE_load_chil 3075 EXIST::FUNCTION:ENGINE,STATIC_ENGINE
|
||||||
OCSP_id_cmp 3076 EXIST::FUNCTION:
|
OCSP_id_cmp 3076 EXIST::FUNCTION:
|
||||||
OCSP_BASICRESP_new 3077 EXIST::FUNCTION:
|
OCSP_BASICRESP_new 3077 EXIST::FUNCTION:
|
||||||
OCSP_REQUEST_get_ext_by_NID 3078 EXIST::FUNCTION:
|
OCSP_REQUEST_get_ext_by_NID 3078 EXIST::FUNCTION:
|
||||||
KRB5_APREQ_it 3079 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
KRB5_APREQ_it 3079 NOEXIST::FUNCTION:
|
||||||
KRB5_APREQ_it 3079 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
KRB5_APREQ_it 3079 NOEXIST::FUNCTION:
|
||||||
ENGINE_get_destroy_function 3080 EXIST::FUNCTION:ENGINE
|
ENGINE_get_destroy_function 3080 EXIST::FUNCTION:ENGINE
|
||||||
CONF_set_nconf 3081 EXIST::FUNCTION:
|
CONF_set_nconf 3081 EXIST::FUNCTION:
|
||||||
ASN1_PRINTABLE_free 3082 EXIST::FUNCTION:
|
ASN1_PRINTABLE_free 3082 EXIST::FUNCTION:
|
||||||
@ -2618,15 +2618,15 @@ X509V3_extensions_print 3085 EXIST::FUNCTION:
|
|||||||
_ossl_old_des_cfb64_encrypt 3086 NOEXIST::FUNCTION:
|
_ossl_old_des_cfb64_encrypt 3086 NOEXIST::FUNCTION:
|
||||||
X509_REVOKED_add1_ext_i2d 3087 EXIST::FUNCTION:
|
X509_REVOKED_add1_ext_i2d 3087 EXIST::FUNCTION:
|
||||||
_ossl_old_des_ofb_encrypt 3088 NOEXIST::FUNCTION:
|
_ossl_old_des_ofb_encrypt 3088 NOEXIST::FUNCTION:
|
||||||
KRB5_TKTBODY_new 3089 EXIST::FUNCTION:
|
KRB5_TKTBODY_new 3089 NOEXIST::FUNCTION:
|
||||||
ASN1_OCTET_STRING_it 3090 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
ASN1_OCTET_STRING_it 3090 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
||||||
ASN1_OCTET_STRING_it 3090 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
ASN1_OCTET_STRING_it 3090 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
||||||
ERR_load_UI_strings 3091 EXIST::FUNCTION:
|
ERR_load_UI_strings 3091 EXIST::FUNCTION:
|
||||||
i2d_KRB5_ENCKEY 3092 EXIST::FUNCTION:
|
i2d_KRB5_ENCKEY 3092 NOEXIST::FUNCTION:
|
||||||
ASN1_template_new 3093 NOEXIST::FUNCTION:
|
ASN1_template_new 3093 NOEXIST::FUNCTION:
|
||||||
OCSP_SIGNATURE_free 3094 EXIST::FUNCTION:
|
OCSP_SIGNATURE_free 3094 EXIST::FUNCTION:
|
||||||
ASN1_item_i2d_fp 3095 EXIST::FUNCTION:STDIO
|
ASN1_item_i2d_fp 3095 EXIST::FUNCTION:STDIO
|
||||||
KRB5_PRINCNAME_free 3096 EXIST::FUNCTION:
|
KRB5_PRINCNAME_free 3096 NOEXIST::FUNCTION:
|
||||||
PKCS7_RECIP_INFO_it 3097 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
PKCS7_RECIP_INFO_it 3097 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
||||||
PKCS7_RECIP_INFO_it 3097 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
PKCS7_RECIP_INFO_it 3097 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
||||||
EXTENDED_KEY_USAGE_it 3098 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
EXTENDED_KEY_USAGE_it 3098 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
||||||
@ -2635,7 +2635,7 @@ EC_GFp_simple_method 3099 EXIST::FUNCTION:EC
|
|||||||
EC_GROUP_precompute_mult 3100 EXIST::FUNCTION:EC
|
EC_GROUP_precompute_mult 3100 EXIST::FUNCTION:EC
|
||||||
OCSP_request_onereq_get0 3101 EXIST::FUNCTION:
|
OCSP_request_onereq_get0 3101 EXIST::FUNCTION:
|
||||||
UI_method_set_writer 3102 EXIST::FUNCTION:
|
UI_method_set_writer 3102 EXIST::FUNCTION:
|
||||||
KRB5_AUTHENT_new 3103 EXIST::FUNCTION:
|
KRB5_AUTHENT_new 3103 NOEXIST::FUNCTION:
|
||||||
X509_CRL_INFO_it 3104 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
X509_CRL_INFO_it 3104 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
||||||
X509_CRL_INFO_it 3104 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
X509_CRL_INFO_it 3104 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
||||||
DSO_set_name_converter 3105 EXIST::FUNCTION:
|
DSO_set_name_converter 3105 EXIST::FUNCTION:
|
||||||
@ -2658,8 +2658,8 @@ OCSP_request_add1_cert 3117 EXIST::FUNCTION:
|
|||||||
UI_get0_output_string 3118 EXIST::FUNCTION:
|
UI_get0_output_string 3118 EXIST::FUNCTION:
|
||||||
UI_dup_verify_string 3119 EXIST::FUNCTION:
|
UI_dup_verify_string 3119 EXIST::FUNCTION:
|
||||||
BN_mod_lshift 3120 EXIST::FUNCTION:
|
BN_mod_lshift 3120 EXIST::FUNCTION:
|
||||||
KRB5_AUTHDATA_it 3121 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
KRB5_AUTHDATA_it 3121 NOEXIST::FUNCTION:
|
||||||
KRB5_AUTHDATA_it 3121 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
KRB5_AUTHDATA_it 3121 NOEXIST::FUNCTION:
|
||||||
asn1_set_choice_selector 3122 NOEXIST::FUNCTION:
|
asn1_set_choice_selector 3122 NOEXIST::FUNCTION:
|
||||||
OCSP_basic_add1_status 3123 EXIST::FUNCTION:
|
OCSP_basic_add1_status 3123 EXIST::FUNCTION:
|
||||||
OCSP_RESPID_free 3124 EXIST::FUNCTION:
|
OCSP_RESPID_free 3124 EXIST::FUNCTION:
|
||||||
@ -2667,7 +2667,7 @@ asn1_get_field_ptr 3125 NOEXIST::FUNCTION:
|
|||||||
UI_add_input_string 3126 EXIST::FUNCTION:
|
UI_add_input_string 3126 EXIST::FUNCTION:
|
||||||
OCSP_CRLID_it 3127 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
OCSP_CRLID_it 3127 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
||||||
OCSP_CRLID_it 3127 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
OCSP_CRLID_it 3127 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
||||||
i2d_KRB5_AUTHENTBODY 3128 EXIST::FUNCTION:
|
i2d_KRB5_AUTHENTBODY 3128 NOEXIST::FUNCTION:
|
||||||
OCSP_REQUEST_get_ext_count 3129 EXIST::FUNCTION:
|
OCSP_REQUEST_get_ext_count 3129 EXIST::FUNCTION:
|
||||||
ENGINE_load_atalla 3130 EXIST::FUNCTION:ENGINE,STATIC_ENGINE
|
ENGINE_load_atalla 3130 EXIST::FUNCTION:ENGINE,STATIC_ENGINE
|
||||||
X509_NAME_it 3131 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
X509_NAME_it 3131 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
||||||
@ -2679,7 +2679,7 @@ OCSP_BASICRESP_get_ext 3134 EXIST::FUNCTION:
|
|||||||
CRYPTO_get_ex_data_implementation 3135 EXIST:!VMS:FUNCTION:
|
CRYPTO_get_ex_data_implementation 3135 EXIST:!VMS:FUNCTION:
|
||||||
CRYPTO_get_ex_data_impl 3135 EXIST:VMS:FUNCTION:
|
CRYPTO_get_ex_data_impl 3135 EXIST:VMS:FUNCTION:
|
||||||
ASN1_item_pack 3136 EXIST::FUNCTION:
|
ASN1_item_pack 3136 EXIST::FUNCTION:
|
||||||
i2d_KRB5_ENCDATA 3137 EXIST::FUNCTION:
|
i2d_KRB5_ENCDATA 3137 NOEXIST::FUNCTION:
|
||||||
X509_PURPOSE_set 3138 EXIST::FUNCTION:
|
X509_PURPOSE_set 3138 EXIST::FUNCTION:
|
||||||
X509_REQ_INFO_it 3139 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
X509_REQ_INFO_it 3139 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
||||||
X509_REQ_INFO_it 3139 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
X509_REQ_INFO_it 3139 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
||||||
@ -2700,10 +2700,10 @@ ASN1_NULL_it 3150 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTI
|
|||||||
BN_mod_lshift1 3151 EXIST::FUNCTION:
|
BN_mod_lshift1 3151 EXIST::FUNCTION:
|
||||||
d2i_OCSP_ONEREQ 3152 EXIST::FUNCTION:
|
d2i_OCSP_ONEREQ 3152 EXIST::FUNCTION:
|
||||||
OCSP_ONEREQ_new 3153 EXIST::FUNCTION:
|
OCSP_ONEREQ_new 3153 EXIST::FUNCTION:
|
||||||
KRB5_TICKET_it 3154 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
KRB5_TICKET_it 3154 NOEXIST::FUNCTION:
|
||||||
KRB5_TICKET_it 3154 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
KRB5_TICKET_it 3154 NOEXIST::FUNCTION:
|
||||||
EVP_aes_192_cbc 3155 EXIST::FUNCTION:AES
|
EVP_aes_192_cbc 3155 EXIST::FUNCTION:AES
|
||||||
KRB5_TICKET_free 3156 EXIST::FUNCTION:
|
KRB5_TICKET_free 3156 NOEXIST::FUNCTION:
|
||||||
UI_new 3157 EXIST::FUNCTION:
|
UI_new 3157 EXIST::FUNCTION:
|
||||||
OCSP_response_create 3158 EXIST::FUNCTION:
|
OCSP_response_create 3158 EXIST::FUNCTION:
|
||||||
_ossl_old_des_xcbc_encrypt 3159 NOEXIST::FUNCTION:
|
_ossl_old_des_xcbc_encrypt 3159 NOEXIST::FUNCTION:
|
||||||
@ -2731,7 +2731,7 @@ i2d_ASN1_T61STRING 3175 EXIST::FUNCTION:
|
|||||||
EC_POINT_set_to_infinity 3176 EXIST::FUNCTION:EC
|
EC_POINT_set_to_infinity 3176 EXIST::FUNCTION:EC
|
||||||
ERR_load_OCSP_strings 3177 EXIST::FUNCTION:
|
ERR_load_OCSP_strings 3177 EXIST::FUNCTION:
|
||||||
EC_POINT_point2oct 3178 EXIST::FUNCTION:EC
|
EC_POINT_point2oct 3178 EXIST::FUNCTION:EC
|
||||||
KRB5_APREQ_free 3179 EXIST::FUNCTION:
|
KRB5_APREQ_free 3179 NOEXIST::FUNCTION:
|
||||||
ASN1_OBJECT_it 3180 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
ASN1_OBJECT_it 3180 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
|
||||||
ASN1_OBJECT_it 3180 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
ASN1_OBJECT_it 3180 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
|
||||||
OCSP_crlID_new 3181 EXIST:!OS2,!VMS:FUNCTION:
|
OCSP_crlID_new 3181 EXIST:!OS2,!VMS:FUNCTION:
|
||||||
|
@ -139,7 +139,6 @@ and [options] can be one of
|
|||||||
no-ssl3 - Skip this version of SSL
|
no-ssl3 - Skip this version of SSL
|
||||||
just-ssl - remove all non-ssl keys/digest
|
just-ssl - remove all non-ssl keys/digest
|
||||||
no-asm - No x86 asm
|
no-asm - No x86 asm
|
||||||
no-krb5 - No KRB5
|
|
||||||
no-srp - No SRP
|
no-srp - No SRP
|
||||||
no-ec - No EC
|
no-ec - No EC
|
||||||
no-engine - No engine
|
no-engine - No engine
|
||||||
@ -294,7 +293,6 @@ $cflags.=" -DOPENSSL_NO_TLSEXT" if $no_tlsext;
|
|||||||
$cflags.=" -DOPENSSL_NO_SRP" if $no_srp;
|
$cflags.=" -DOPENSSL_NO_SRP" if $no_srp;
|
||||||
$cflags.=" -DOPENSSL_NO_CMS" if $no_cms;
|
$cflags.=" -DOPENSSL_NO_CMS" if $no_cms;
|
||||||
$cflags.=" -DOPENSSL_NO_ERR" if $no_err;
|
$cflags.=" -DOPENSSL_NO_ERR" if $no_err;
|
||||||
$cflags.=" -DOPENSSL_NO_KRB5" if $no_krb5;
|
|
||||||
$cflags.=" -DOPENSSL_NO_EC" if $no_ec;
|
$cflags.=" -DOPENSSL_NO_EC" if $no_ec;
|
||||||
$cflags.=" -DOPENSSL_NO_GOST" if $no_gost;
|
$cflags.=" -DOPENSSL_NO_GOST" if $no_gost;
|
||||||
$cflags.=" -DOPENSSL_NO_ENGINE" if $no_engine;
|
$cflags.=" -DOPENSSL_NO_ENGINE" if $no_engine;
|
||||||
@ -381,18 +379,12 @@ for (;;)
|
|||||||
$dir=$val;
|
$dir=$val;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($key eq "KRB5_INCLUDES")
|
|
||||||
{ $cflags .= " $val";}
|
|
||||||
|
|
||||||
if ($key eq "ZLIB_INCLUDE")
|
if ($key eq "ZLIB_INCLUDE")
|
||||||
{ $cflags .= " $val" if $val ne "";}
|
{ $cflags .= " $val" if $val ne "";}
|
||||||
|
|
||||||
if ($key eq "LIBZLIB")
|
if ($key eq "LIBZLIB")
|
||||||
{ $zlib_lib = "$val" if $val ne "";}
|
{ $zlib_lib = "$val" if $val ne "";}
|
||||||
|
|
||||||
if ($key eq "LIBKRB5")
|
|
||||||
{ $ex_libs .= " $val" if $val ne "";}
|
|
||||||
|
|
||||||
if ($key eq "EX_LIBS")
|
if ($key eq "EX_LIBS")
|
||||||
{ $ex_libs .= " $val" if $val ne "";}
|
{ $ex_libs .= " $val" if $val ne "";}
|
||||||
|
|
||||||
@ -1407,7 +1399,6 @@ sub read_options
|
|||||||
"no-ec_nistp_64_gcc_128" => 0,
|
"no-ec_nistp_64_gcc_128" => 0,
|
||||||
"no-err" => \$no_err,
|
"no-err" => \$no_err,
|
||||||
"no-sock" => \$no_sock,
|
"no-sock" => \$no_sock,
|
||||||
"no-krb5" => \$no_krb5,
|
|
||||||
"no-ec" => \$no_ec,
|
"no-ec" => \$no_ec,
|
||||||
"no-gost" => \$no_gost,
|
"no-gost" => \$no_gost,
|
||||||
"no-engine" => \$no_engine,
|
"no-engine" => \$no_engine,
|
||||||
@ -1494,22 +1485,6 @@ sub read_options
|
|||||||
$xcflags="-DOPENSSL_EXPERIMENTAL_$ALGO $xcflags";
|
$xcflags="-DOPENSSL_EXPERIMENTAL_$ALGO $xcflags";
|
||||||
|
|
||||||
}
|
}
|
||||||
elsif (/^--with-krb5-flavor=(.*)$/)
|
|
||||||
{
|
|
||||||
my $krb5_flavor = $1;
|
|
||||||
if ($krb5_flavor =~ /^force-[Hh]eimdal$/)
|
|
||||||
{
|
|
||||||
$xcflags="-DKRB5_HEIMDAL $xcflags";
|
|
||||||
}
|
|
||||||
elsif ($krb5_flavor =~ /^MIT/i)
|
|
||||||
{
|
|
||||||
$xcflags="-DKRB5_MIT $xcflags";
|
|
||||||
if ($krb5_flavor =~ /^MIT[._-]*1[._-]*[01]/i)
|
|
||||||
{
|
|
||||||
$xcflags="-DKRB5_MIT_OLD11 $xcflags"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
elsif (/^([^=]*)=(.*)$/){ $VARS{$1}=$2; }
|
elsif (/^([^=]*)=(.*)$/){ $VARS{$1}=$2; }
|
||||||
elsif (/^-[lL].*$/) { $l_flags.="$_ "; }
|
elsif (/^-[lL].*$/) { $l_flags.="$_ "; }
|
||||||
elsif ((!/^-help/) && (!/^-h/) && (!/^-\?/) && /^-.*$/)
|
elsif ((!/^-help/) && (!/^-h/) && (!/^-\?/) && /^-.*$/)
|
||||||
|
@ -77,7 +77,7 @@ my @known_algorithms = ( "RC2", "RC4", "RC5", "IDEA", "DES", "BF",
|
|||||||
"BIO", "COMP", "BUFFER", "LHASH", "STACK", "ERR",
|
"BIO", "COMP", "BUFFER", "LHASH", "STACK", "ERR",
|
||||||
"LOCKING",
|
"LOCKING",
|
||||||
# External "algorithms"
|
# External "algorithms"
|
||||||
"FP_API", "STDIO", "SOCK", "KRB5", "DGRAM",
|
"FP_API", "STDIO", "SOCK", "DGRAM",
|
||||||
# Engines
|
# Engines
|
||||||
"STATIC_ENGINE", "ENGINE", "HW", "GMP",
|
"STATIC_ENGINE", "ENGINE", "HW", "GMP",
|
||||||
# TLS
|
# TLS
|
||||||
@ -121,7 +121,7 @@ close(IN);
|
|||||||
my $no_rc2; my $no_rc4; my $no_rc5; my $no_idea; my $no_des; my $no_bf;
|
my $no_rc2; my $no_rc4; my $no_rc5; my $no_idea; my $no_des; my $no_bf;
|
||||||
my $no_cast; my $no_whirlpool; my $no_camellia; my $no_seed;
|
my $no_cast; my $no_whirlpool; my $no_camellia; my $no_seed;
|
||||||
my $no_md2; my $no_md4; my $no_md5; my $no_sha; my $no_ripemd; my $no_mdc2;
|
my $no_md2; my $no_md4; my $no_md5; my $no_sha; my $no_ripemd; my $no_mdc2;
|
||||||
my $no_rsa; my $no_dsa; my $no_dh; my $no_aes; my $no_krb5;
|
my $no_rsa; my $no_dsa; my $no_dh; my $no_aes;
|
||||||
my $no_ec; my $no_ecdsa; my $no_ecdh; my $no_engine; my $no_hw;
|
my $no_ec; my $no_ecdsa; my $no_ecdh; my $no_engine; my $no_hw;
|
||||||
my $no_fp_api; my $no_static_engine=1; my $no_gmp; my $no_deprecated;
|
my $no_fp_api; my $no_static_engine=1; my $no_gmp; my $no_deprecated;
|
||||||
my $no_psk; my $no_tlsext; my $no_cms; my $no_capieng;
|
my $no_psk; my $no_tlsext; my $no_cms; my $no_capieng;
|
||||||
@ -210,7 +210,6 @@ foreach (@ARGV, split(/ /, $options))
|
|||||||
#elsif (/^no-locking$/) { $no_locking=1; }
|
#elsif (/^no-locking$/) { $no_locking=1; }
|
||||||
elsif (/^no-comp$/) { $no_comp=1; }
|
elsif (/^no-comp$/) { $no_comp=1; }
|
||||||
elsif (/^no-dso$/) { $no_dso=1; }
|
elsif (/^no-dso$/) { $no_dso=1; }
|
||||||
elsif (/^no-krb5$/) { $no_krb5=1; }
|
|
||||||
elsif (/^no-engine$/) { $no_engine=1; }
|
elsif (/^no-engine$/) { $no_engine=1; }
|
||||||
elsif (/^no-hw$/) { $no_hw=1; }
|
elsif (/^no-hw$/) { $no_hw=1; }
|
||||||
elsif (/^no-gmp$/) { $no_gmp=1; }
|
elsif (/^no-gmp$/) { $no_gmp=1; }
|
||||||
@ -319,7 +318,6 @@ $crypto.=" include/openssl/rand.h";
|
|||||||
$crypto.=" include/openssl/comp.h" ; # unless $no_comp;
|
$crypto.=" include/openssl/comp.h" ; # unless $no_comp;
|
||||||
$crypto.=" include/openssl/ocsp.h";
|
$crypto.=" include/openssl/ocsp.h";
|
||||||
$crypto.=" include/openssl/ui.h";
|
$crypto.=" include/openssl/ui.h";
|
||||||
$crypto.=" include/openssl/krb5_asn.h";
|
|
||||||
#$crypto.=" include/openssl/store.h";
|
#$crypto.=" include/openssl/store.h";
|
||||||
$crypto.=" include/openssl/pqueue.h";
|
$crypto.=" include/openssl/pqueue.h";
|
||||||
$crypto.=" include/openssl/cms.h";
|
$crypto.=" include/openssl/cms.h";
|
||||||
@ -1195,7 +1193,6 @@ sub is_valid
|
|||||||
if ($keyword eq "BIO" && $no_bio) { return 0; }
|
if ($keyword eq "BIO" && $no_bio) { return 0; }
|
||||||
if ($keyword eq "COMP" && $no_comp) { return 0; }
|
if ($keyword eq "COMP" && $no_comp) { return 0; }
|
||||||
if ($keyword eq "DSO" && $no_dso) { return 0; }
|
if ($keyword eq "DSO" && $no_dso) { return 0; }
|
||||||
if ($keyword eq "KRB5" && $no_krb5) { return 0; }
|
|
||||||
if ($keyword eq "ENGINE" && $no_engine) { return 0; }
|
if ($keyword eq "ENGINE" && $no_engine) { return 0; }
|
||||||
if ($keyword eq "HW" && $no_hw) { return 0; }
|
if ($keyword eq "HW" && $no_hw) { return 0; }
|
||||||
if ($keyword eq "FP_API" && $no_fp_api) { return 0; }
|
if ($keyword eq "FP_API" && $no_fp_api) { return 0; }
|
||||||
|
@ -58,7 +58,6 @@ my @dirs = (
|
|||||||
"crypto/engine",
|
"crypto/engine",
|
||||||
"crypto/ocsp",
|
"crypto/ocsp",
|
||||||
"crypto/ui",
|
"crypto/ui",
|
||||||
"crypto/krb5",
|
|
||||||
#"crypto/store",
|
#"crypto/store",
|
||||||
"crypto/pqueue",
|
"crypto/pqueue",
|
||||||
"crypto/whrlpool",
|
"crypto/whrlpool",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user