updated (lib+)oqsprovider to latest releases
Reviewed-by: Nicola Tuveri <nic.tuv@gmail.com> Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/21194)
This commit is contained in:
parent
ca711651c1
commit
f3f3f86a14
@ -1 +1 @@
|
||||
Subproject commit 3f3d8a8cf331c73a26fe93a598273997cb54eb4f
|
||||
Subproject commit 8c746d7e294d6948c2f361a8f2fa376a63a2db30
|
@ -111,14 +111,12 @@ explicitly run (with more debugging):
|
||||
$ make test VERBOSE=1 TESTS=test_external_oqsprovider
|
||||
|
||||
The environment variable `OQS_SKIP_TESTS` can be set to select tests and
|
||||
algorithms to be skipped. If not set, the "rainbow" algorithm set as well as
|
||||
the (OQS-)OpenSSL1.1.1 compatibility tests will not be executed. So, for
|
||||
example to exclude the "mceliece" and "kyber" algorithms execute
|
||||
algorithms to be skipped, e.g. as follows:
|
||||
|
||||
OQS_SKIP_TESTS=mceliece,kyber make test TESTS=test_external_oqsprovider
|
||||
OQS_SKIP_TESTS=kyber make test TESTS=test_external_oqsprovider
|
||||
|
||||
The names of all supported quantum-safe algorithms are available at
|
||||
<https://github.com/open-quantum-safe/openssl#supported-algorithms>
|
||||
<https://github.com/open-quantum-safe/oqs-provider#algorithms>
|
||||
|
||||
Updating test suites
|
||||
====================
|
||||
|
@ -1,6 +1,6 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Copyright 2022 The OpenSSL Project Authors. All Rights Reserved.
|
||||
# Copyright 2022-2023 The OpenSSL Project Authors. All Rights Reserved.
|
||||
#
|
||||
# Licensed under the Apache License 2.0 (the "License"). You may not use
|
||||
# this file except in compliance with the License. You can obtain a copy
|
||||
@ -45,29 +45,30 @@ echo " OPENSSL_ROOT_DIR: $OPENSSL_ROOT_DIR"
|
||||
echo " OpenSSL version: $OPENSSL_VERSION"
|
||||
echo "------------------------------------------------------------------"
|
||||
|
||||
if [ ! -d $SRCTOP/oqs-provider/oqs ]; then
|
||||
# disable rainbow family by default; all further config options listed at
|
||||
if [ ! -d $SRCTOP/oqs-provider/.local ]; then
|
||||
# this version of oqsprovider dependent on v0.8.0 of liboqs, so set this;
|
||||
# also be sure to use this openssl for liboqs-internal OpenSSL use;
|
||||
# see all libops config options listed at
|
||||
# https://github.com/open-quantum-safe/liboqs/wiki/Customizing-liboqs
|
||||
(
|
||||
cd $SRCTOP/oqs-provider \
|
||||
&& git clone --depth 1 --branch 0.7.2 https://github.com/open-quantum-safe/liboqs.git \
|
||||
&& git clone --depth 1 --branch 0.8.0 https://github.com/open-quantum-safe/liboqs.git \
|
||||
&& cd liboqs \
|
||||
&& mkdir build \
|
||||
&& cd build \
|
||||
&& cmake -DOQS_ENABLE_SIG_RAINBOW=OFF -DCMAKE_INSTALL_PREFIX=$SRCTOP/oqs-provider/oqs .. \
|
||||
&& cmake -DOPENSSL_ROOT_DIR=$OPENSSL_ROOT_DIR -DCMAKE_INSTALL_PREFIX=$SRCTOP/oqs-provider/.local .. \
|
||||
&& make \
|
||||
&& make install
|
||||
)
|
||||
fi
|
||||
|
||||
echo " CWD: $PWD"
|
||||
cmake $SRCTOP/oqs-provider -DCMAKE_INCLUDE_PATH=$SRCTOP/oqs-provider/oqs -DCMAKE_PREFIX_PATH=$SRCTOP/oqs-provider/oqs -DOPENSSL_ROOT_DIR="$OPENSSL_ROOT_DIR" -DOPENSSL_BLDTOP=$BLDTOP -B _build && cmake --build _build
|
||||
liboqs_DIR=$SRCTOP/oqs-provider/.local cmake $SRCTOP/oqs-provider -DOPENSSL_ROOT_DIR="$OPENSSL_ROOT_DIR" -B _build && cmake --build _build
|
||||
export CTEST_OUTPUT_ON_FAILURE=1
|
||||
export HARNESS_OSSL_PREFIX=''
|
||||
export OPENSSL_APP="$O_EXE/openssl"
|
||||
if [ -z "$OQS_SKIP_TESTS" ]; then
|
||||
export OQS_SKIP_TESTS="rainbow,111"
|
||||
fi
|
||||
export OPENSSL_MODULES=$PWD/_build/oqsprov
|
||||
export OQS_PROVIDER_TESTSCRIPTS=$SRCTOP/oqs-provider
|
||||
$SRCTOP/oqs-provider/scripts/runtests.sh
|
||||
export OPENSSL_MODULES=$PWD/_build/lib
|
||||
export OQS_PROVIDER_TESTSCRIPTS=$SRCTOP/oqs-provider/scripts
|
||||
export OPENSSL_CONF=$OQS_PROVIDER_TESTSCRIPTS/openssl-ca.cnf
|
||||
# Be verbose if harness is verbose:
|
||||
$SRCTOP/oqs-provider/scripts/runtests.sh -V
|
||||
|
Loading…
x
Reference in New Issue
Block a user