diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-03-18 07:53:04 -0400 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-03-18 07:53:04 -0400 |
commit | 61666eb11ac6c7acedf1a5ff9931d1be9e8facfe (patch) | |
tree | a6213e0a875a63fe0cf0d4ba24c8e52640e5253f /tests | |
parent | afc2518fbfd9e816c035b953926f8f7d4a94c1fd (diff) | |
download | cryptography-61666eb11ac6c7acedf1a5ff9931d1be9e8facfe.tar.gz cryptography-61666eb11ac6c7acedf1a5ff9931d1be9e8facfe.tar.bz2 cryptography-61666eb11ac6c7acedf1a5ff9931d1be9e8facfe.zip |
add headers to each test so the file source can be determined
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_utils.py | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/tests/test_utils.py b/tests/test_utils.py index 54126e0c..42b020b4 100644 --- a/tests/test_utils.py +++ b/tests/test_utils.py @@ -1042,6 +1042,9 @@ def test_load_totp_vectors(): def test_load_rsa_nist_vectors(): vector_data = textwrap.dedent(""" + # CAVS 11.4 + # "SigGen PKCS#1 RSASSA-PSS" information + # Mod sizes selected: 1024 1536 2048 3072 4096 # SHA Algorithm selected:SHA1 SHA224 SHA256 SHA384 SHA512 # Salt len: 20 @@ -1109,7 +1112,11 @@ def test_load_rsa_nist_vectors(): def test_load_rsa_nist_pkcs1v15_verification_vectors(): vector_data = textwrap.dedent(""" - # Generated on Wed Mar 02 00:25:22 2011 + # CAVS 11.0 + # "SigVer PKCS#1 Ver 1.5" information + # Mod sizes selected: 1024 1536 2048 3072 4096 + # SHA Algorithm selected:SHA1 SHA224 SHA256 SHA384 SHA512 + # Generated on Wed Mar 02 00:13:02 2011 [mod = 1024] @@ -1177,6 +1184,9 @@ def test_load_rsa_nist_pkcs1v15_verification_vectors(): def test_load_rsa_nist_pss_verification_vectors(): vector_data = textwrap.dedent(""" + # CAVS 11.0 + # "SigVer PKCS#1 RSASSA-PSS" information + # Mod sizes selected: 1024 1536 2048 3072 4096 # SHA Algorithm selected:SHA1 SHA224 SHA256 SHA384 SHA512 # Salt len: 10 # Generated on Wed Mar 02 00:25:22 2011 |