Import OpenSSL 1.1.0j
This commit is contained in:
@@ -282,7 +282,7 @@ TS_REQ_free 282 1_1_0 EXIST::FUNCTION:TS
|
||||
PEM_read_DHparams 283 1_1_0 EXIST::FUNCTION:DH,STDIO
|
||||
RSA_private_decrypt 284 1_1_0 EXIST::FUNCTION:RSA
|
||||
X509V3_EXT_get_nid 285 1_1_0 EXIST::FUNCTION:
|
||||
BIO_s_log 286 1_1_0 EXIST:!WIN32,!macintosh:FUNCTION:
|
||||
BIO_s_log 286 1_1_0 EXIST::FUNCTION:
|
||||
EC_POINT_set_to_infinity 287 1_1_0 EXIST::FUNCTION:EC
|
||||
EVP_des_ede_ofb 288 1_1_0 EXIST::FUNCTION:DES
|
||||
ECDH_KDF_X9_62 289 1_1_0 EXIST::FUNCTION:EC
|
||||
@@ -4263,3 +4263,5 @@ X509_OBJECT_set1_X509 4514 1_1_0i EXIST::FUNCTION:
|
||||
X509_LOOKUP_meth_get_get_by_issuer_serial 4515 1_1_0i EXIST::FUNCTION:
|
||||
X509_LOOKUP_meth_set_init 4516 1_1_0i EXIST::FUNCTION:
|
||||
X509_OBJECT_set1_X509_CRL 4517 1_1_0i EXIST::FUNCTION:
|
||||
OCSP_resp_get0_tbs_sigalg 4529 1_1_0j EXIST::FUNCTION:OCSP
|
||||
OCSP_resp_get0_respdata 4530 1_1_0j EXIST::FUNCTION:OCSP
|
||||
|
||||
@@ -978,16 +978,6 @@ sub do_defs
|
||||
}
|
||||
}
|
||||
|
||||
# Prune the returned symbols
|
||||
|
||||
delete $syms{"bn_dump1"};
|
||||
$platform{"BIO_s_log"} .= ",!WIN32,!macintosh";
|
||||
|
||||
$platform{"PEM_read_NS_CERT_SEQ"} = "VMS";
|
||||
$platform{"PEM_write_NS_CERT_SEQ"} = "VMS";
|
||||
$platform{"PEM_read_P8_PRIV_KEY_INFO"} = "VMS";
|
||||
$platform{"PEM_write_P8_PRIV_KEY_INFO"} = "VMS";
|
||||
|
||||
# Info we know about
|
||||
|
||||
push @ret, map { $_."\\".&info_string($_,"EXIST",
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#! /usr/bin/env perl
|
||||
# Copyright 2006-2016 The OpenSSL Project Authors. All Rights Reserved.
|
||||
# Copyright 2006-2018 The OpenSSL Project Authors. All Rights Reserved.
|
||||
#
|
||||
# Licensed under the OpenSSL license (the "License"). You may not use
|
||||
# this file except in compliance with the License. You can obtain a copy
|
||||
@@ -60,7 +60,7 @@ BEGIN
|
||||
BLOCK "040904b0"
|
||||
BEGIN
|
||||
// Required:
|
||||
VALUE "CompanyName", "The OpenSSL Project, http://www.openssl.org/\\0"
|
||||
VALUE "CompanyName", "The OpenSSL Project, https://www.openssl.org/\\0"
|
||||
VALUE "FileDescription", "$description\\0"
|
||||
VALUE "FileVersion", "$version\\0"
|
||||
VALUE "InternalName", "$basename\\0"
|
||||
|
||||
@@ -704,7 +704,7 @@ Returns a list of two numbers, the first representing the build version,
|
||||
the second representing the library version. See opensslv.h for more
|
||||
information on those numbers.
|
||||
|
||||
= back
|
||||
=back
|
||||
|
||||
=cut
|
||||
|
||||
|
||||
@@ -1,5 +1,22 @@
|
||||
#!/bin/sh
|
||||
{-
|
||||
use lib '.';
|
||||
use configdata;
|
||||
|
||||
sub shlib {
|
||||
my $lib = shift;
|
||||
return "" if $disabled{shared};
|
||||
$lib = $unified_info{rename}->{$lib}
|
||||
if defined $unified_info{rename}->{$lib};
|
||||
$lib = $unified_info{sharednames}->{$lib}
|
||||
. ($target{shlib_variant} || "")
|
||||
. ($target{shared_extension} || ".so");
|
||||
$lib =~ s|\.\$\(SHLIB_MAJOR\)\.\$\(SHLIB_MINOR\)
|
||||
|.$config{shlib_version_number}|x;
|
||||
return $lib;
|
||||
}
|
||||
""; # Make sure no left over string sneaks its way into the script
|
||||
-}
|
||||
# To test this OpenSSL version's applications against another version's
|
||||
# shared libraries, simply set
|
||||
#
|
||||
@@ -25,15 +42,8 @@ fi
|
||||
THERE="`echo $0 | sed -e 's|[^/]*$||' 2>/dev/null`.."
|
||||
[ -d "${THERE}" ] || exec "$@" # should never happen...
|
||||
|
||||
# Alternative to this is to parse ${THERE}/Makefile...
|
||||
LIBCRYPTOSO="${THERE}/libcrypto.so"
|
||||
if [ -f "$LIBCRYPTOSO" ]; then
|
||||
while [ -h "$LIBCRYPTOSO" ]; do
|
||||
LIBCRYPTOSO="${THERE}/`ls -l "$LIBCRYPTOSO" | sed -e 's|.*\-> ||'`"
|
||||
done
|
||||
SOSUFFIX=`echo ${LIBCRYPTOSO} | sed -e 's|.*\.so||' 2>/dev/null`
|
||||
LIBSSLSO="${THERE}/libssl.so${SOSUFFIX}"
|
||||
fi
|
||||
LIBCRYPTOSO="${THERE}/{- shlib('libcrypto') -}"
|
||||
LIBSSLSO="${THERE}/{- shlib('libssl') -}"
|
||||
|
||||
SYSNAME=`(uname -s) 2>/dev/null`;
|
||||
case "$SYSNAME" in
|
||||
|
||||
Reference in New Issue
Block a user