Skip to content

Use PyCryptodome's implementation of TurboSHAKE128 #299

Use PyCryptodome's implementation of TurboSHAKE128

Use PyCryptodome's implementation of TurboSHAKE128 #299

Workflow file for this run

name: Test
on:
push:
branches:
- main
paths:
- '.github/workflows/test.yml'
- 'poc/**'
pull_request:
paths:
- '.github/workflows/test.yml'
- 'poc/**'
jobs:
test:
name: "Run unit tests for reference code"
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: true
- name: Install Sage
run: |
sudo apt-get update
sudo apt-get install -y sagemath python3-cffi
sage -pip install pycryptodomex
- name: Run tests
working-directory: poc
run: make test