From: Mark Wooding Date: Sun, 17 Nov 2019 23:42:00 +0000 (+0000) Subject: t/t-algorithms.py: Add tests for other HSalsa20 and HChaCha key sizes. X-Git-Url: https://git.distorted.org.uk/~mdw/catacomb-python/commitdiff_plain/3b5f9ac06397ff2c0b87d9c6f6288d222f8f9861 t/t-algorithms.py: Add tests for other HSalsa20 and HChaCha key sizes. --- diff --git a/t/t-algorithms.py b/t/t-algorithms.py index d9f94df..fc6bff2 100644 --- a/t/t-algorithms.py +++ b/t/t-algorithms.py @@ -712,7 +712,7 @@ class TestHLatin (U.TestCase): """Test the `hsalsa20' and `hchacha20' functions.""" def test_hlatin(me): - kk = [T.span(sz) for sz in [32]] + kk = [T.span(sz) for sz in [10, 16, 32]] n = T.span(16) bad_k = T.span(18) bad_n = T.span(13)