mirror of
https://github.com/open-quantum-safe/liboqs.git
synced 2025-10-04 00:02:01 -04:00
* removed full-size KATs * corrected qTesla avx2 KAT selection * Fixed macOS build warnings. (#782) * removed full-size KATs * corrected qTesla avx2 KAT selection * KATs as dicts; simplified & corrected logic
9 lines
205 B
Bash
Executable File
9 lines
205 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
# Run in arbitrary folder to create .sha256 files from .kat files
|
|
for filename in *.kat; do
|
|
sha256sum $filename | awk '{printf $1}' > $filename.sha256
|
|
done
|