https://github.com/mupq/pqm4
Revision cd1c7e4a7ff8134a712d10a31cb68157967c5e3b authored by Ko- on 12 June 2019, 11:26:57 UTC, committed by Ko- on 12 June 2019, 11:26:57 UTC
The cshake{128,256}_simple API is now deprecated. Implementations
should use the more generic cSHAKE API from sp800-185.h.
1 parent 6e4d959
Raw File
Tip revision: cd1c7e4a7ff8134a712d10a31cb68157967c5e3b authored by Ko- on 12 June 2019, 11:26:57 UTC
Update README with cSHAKE
Tip revision: cd1c7e4
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