Skip to content

Kyber Fix

Kyber Fix #5

Workflow file for this run

name: Kyber tests
on:
push:
branches: [ '*' ]
pull_request:
branches: [ '*' ]
jobs:
run_test:
name: Build and run
strategy:
matrix:
config:
- liboqs-url: https://github.com/open-quantum-safe/liboqs
- liboqs-ver: 0.10.0
- wolfssl-url: https://github.com/wolfssl/wolfssl
- wolfssl-ver: v5.7.0-stable
runs-on: ubuntu-latest
# This should be a safe limit for the tests to run.
timeout-minutes: 15
steps:
- name: Install dependencies
run: sudo apt-get update && \
sudo apt-get install -y build-essential autoconf automake libtool \
git cmake make
- name: Install liboqs source
run: git clone --depth 1 --branch ${{ matrix.config.liboqs-ver }} \
${{ matrix.config.liboqs-url }}
- name: Build and install liboqs
working-directory: liboqs
run: mkdir build && cd build && \
cmake -DOQS_MINIMAL_BUILD=KEM_kyber_512 -DOQS_USE_OPENSSL=0 .. && \
make && sudo make install
- name: Install wolfSSL source
run: git clone --depth 1 --branch ${{ matrix.config.wolfssl-ver }} \
${{ matrix.config.wolfssl-url }}
- name: Build and install wolfSSL
working-directory: wolfssl
run: autoreconf -ivf && \
./configure --enable-wolfssh --enable-kyber --enable-experimental \
--enable-cryptonly --disable-examples --disable-crypttests && \
make && sudo make install
- name: Install wolfSSH
run: git clone --depth 1 https://github.com/wolfssl/wolfssh
- name: Build wolfSSH
working-directory: wolfssh
run: autoreconf -ivf && ./configure --with-liboqs && make
- name: Run wolfssh tests
working-directory: wolfssh
run: make check