mirror of
https://github.com/open-quantum-safe/liboqs.git
synced 2025-10-04 00:02:01 -04:00
* Add speed_sig_stfl Signed-off-by: cr-marcstevens <github@marc-stevens.nl> * Fix speed_sig_stfl.c: limit timing with max sig ops & provide required secure keystore with dummy keystore Signed-off-by: cr-marcstevens <github@marc-stevens.nl> * Cleanup speed_sig_stfl.c Signed-off-by: cr-marcstevens <github@marc-stevens.nl> * speed_sig_stfl: fix for LMS (secure store context must not be NULL), refresh key when out of sigs for sig benchmark Signed-off-by: cr-marcstevens <github@marc-stevens.nl> * tests/speed_sig_stfl.c: astyle fix Signed-off-by: cr-marcstevens <github@marc-stevens.nl> * tests/speed_sig_stfl.c: stfl sig benchmarks require intermittent resetting of secret key Signed-off-by: cr-marcstevens <github@marc-stevens.nl> * speed_sig_stfl: add speed_sig_stfl to: README scripts/nogress.sh tests/test_speed.py Signed-off-by: cr-marcstevens <github@marc-stevens.nl> * test_speed.py: limit testing of stfl sigs to parameters with 2^10 max sigs Signed-off-by: cr-marcstevens <github@marc-stevens.nl> * scripts/nogress.sh: limit regression tests on stfl sigs to only algorithms with 2^10 max sigs Signed-off-by: cr-marcstevens <github@marc-stevens.nl> * speed_sig_stfl.c: astyle fix Signed-off-by: cr-marcstevens <github@marc-stevens.nl> * speed_sig_stfl: 1) fix use-after-free bug. 2) Simply return success if keygen and sign are not enabled. Signed-off-by: cr-marcstevens <github@marc-stevens.nl> --------- Signed-off-by: cr-marcstevens <github@marc-stevens.nl>
37 lines
1.3 KiB
Python
37 lines
1.3 KiB
Python
# SPDX-License-Identifier: MIT
|
|
|
|
import helpers
|
|
import os
|
|
import os.path
|
|
import pytest
|
|
import platform
|
|
|
|
@helpers.filtered_test
|
|
@pytest.mark.parametrize('kem_name', helpers.available_kems_by_name())
|
|
def test_kem(kem_name):
|
|
kats = helpers.get_kats("kem")
|
|
if not(helpers.is_kem_enabled_by_name(kem_name)): pytest.skip('Not enabled')
|
|
helpers.run_subprocess( [helpers.path_to_executable('speed_kem'), kem_name, "-f"] )
|
|
|
|
@helpers.filtered_test
|
|
@pytest.mark.parametrize('sig_name', helpers.available_sigs_by_name())
|
|
def test_sig(sig_name):
|
|
kats = helpers.get_kats("sig")
|
|
if not(helpers.is_sig_enabled_by_name(sig_name)): pytest.skip('Not enabled')
|
|
helpers.run_subprocess( [helpers.path_to_executable('speed_sig'), sig_name, "-f"])
|
|
|
|
@helpers.filtered_test
|
|
@pytest.mark.parametrize('sig_stfl_name', helpers.available_sig_stfls_by_name())
|
|
def test_sig(sig_stfl_name):
|
|
kats = helpers.get_kats("sig_stfl")
|
|
if not(helpers.is_sig_stfl_enabled_by_name(sig_stfl_name)):
|
|
pytest.skip('Not enabled')
|
|
elif sig_stfl_name.find("_10")==-1 and sig_stfl_name.find("H10")==-1:
|
|
pytest.skip('Test skipped')
|
|
else:
|
|
helpers.run_subprocess( [helpers.path_to_executable('speed_sig_stfl'), sig_stfl_name, "-f"])
|
|
|
|
if __name__ == "__main__":
|
|
import sys
|
|
pytest.main(sys.argv)
|