Reference implementations of PQC
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- name: PQC
-
- on:
- - push
- - pull_request
-
- jobs:
- unit-test:
- name: Unit tests
- runs-on: [ubuntu-20.04]
- steps:
- - uses: actions/checkout@v1
- with:
- submodules: true
- - name: build
- run: |
- mkdir -p build
- cd build
- cmake -DCMAKE_BUILD_TYPE=Release ..
- make
- - name: run tests
- run: |
- cd build && ./ut
- - name: Build Rust bindings
- run: |
- cd src/rustapi/pqc-sys && cargo build
- - name: Run KAT tests
- run: |
- cd test/katrunner &&
- curl http://amongbytes.com/~flowher/permalinks/kat.zip --output kat.zip
- unzip kat.zip
- cargo run -- --katdir KAT
|