https://github.com/mupq/pqm4
Revision 60e418f5158b880fe3f05493bcbc4f06c81515d8 authored by Matthias J. Kannwischer on 05 September 2019, 12:13:32 UTC, committed by Matthias J. Kannwischer on 05 September 2019, 12:23:31 UTC
there seems to be a small mistake in our previous SPHINCS+ results.
For sphincs-haraka-192s-robust the cycle count for key gen and signing
was the same which doesn't make sense.
When re-running the benchmarks I got vastly different numbers.
This must have been a glitch during the previous benchmarks.
1 parent be0c421
Raw File
Tip revision: 60e418f5158b880fe3f05493bcbc4f06c81515d8 authored by Matthias J. Kannwischer on 05 September 2019, 12:13:32 UTC
fix sphincs-haraka-192s-robust benchmarks
Tip revision: 60e418f
testvectors.py
#!/usr/bin/env python3
from mupq import mupq
from interface import M4Settings, M4

import sys
if __name__ == "__main__":
    with M4() as m4:
        test = mupq.TestVectors(M4Settings(), m4)
        test.test_all(sys.argv[1:])
back to top