Remove undefined behavior when d equals 1. #347
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests for ref implementation | |
on: | |
- push | |
- pull_request | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
hash: | |
- sha2 | |
- shake | |
- haraka | |
size: | |
- 128 | |
- 192 | |
- 256 | |
option: | |
- s | |
- f | |
thash: | |
- simple | |
- robust | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Run make | |
run: | | |
make -C ref HASH=${{ matrix.hash }} THASH=${{ matrix.thash }} clean | |
make -C ref HASH=${{ matrix.hash }} THASH=${{ matrix.thash }} PARAMS=sphincs-${{ matrix.hash }}-${{ matrix.size }}${{ matrix.option }} tests | |
make -C ref HASH=${{ matrix.hash }} THASH=${{ matrix.thash }} PARAMS=sphincs-${{ matrix.hash }}-${{ matrix.size }}${{ matrix.option }} test | |
make -C ref THASH=${{ matrix.thash }} PQCgenKAT_sign | |
- name: Run PQCgenKAT_sign | |
run: python3 vectors.py sphincs-${{ matrix.hash }}-${{ matrix.size }}${{ matrix.option }}-${{ matrix.thash }} ref | |
# vim: set ft=yaml ts=2 sw=2 et : |