diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2018-12-31 10:10:09 -0600 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2018-12-31 10:10:09 -0600 |
commit | f7567f62075f2e80762834e6d71c79cd50bb4529 (patch) | |
tree | 1c8bf332928ee9fb6aba717927b1144141d49c34 /tests | |
parent | ebaa5706976ced25a89b89b49a570c22c1da1b87 (diff) | |
download | cryptography-f7567f62075f2e80762834e6d71c79cd50bb4529.tar.gz cryptography-f7567f62075f2e80762834e6d71c79cd50bb4529.tar.bz2 cryptography-f7567f62075f2e80762834e6d71c79cd50bb4529.zip |
HTTPS a bunch of links in random places (#4666)
* HTTPS a bunch of links in random places
* What the heck happened here?
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_utils.py | 8 | ||||
-rw-r--r-- | tests/utils.py | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/tests/test_utils.py b/tests/test_utils.py index 81656eb9..ecd257bd 100644 --- a/tests/test_utils.py +++ b/tests/test_utils.py @@ -227,7 +227,7 @@ def test_load_ed25519_vectors(): def test_load_cryptrec_vectors(): vector_data = textwrap.dedent(""" - # Vectors taken from http://info.isl.ntt.co.jp/crypt/eng/camellia/ + # Vectors taken from https://info.isl.ntt.co.jp/crypt/eng/camellia/ # Download is t_camelia.txt # Camellia with 128-bit key @@ -267,7 +267,7 @@ def test_load_cryptrec_vectors(): def test_load_cryptrec_vectors_invalid(): vector_data = textwrap.dedent(""" - # Vectors taken from http://info.isl.ntt.co.jp/crypt/eng/camellia/ + # Vectors taken from https://info.isl.ntt.co.jp/crypt/eng/camellia/ # Download is t_camelia.txt # Camellia with 128-bit key @@ -282,7 +282,7 @@ def test_load_cryptrec_vectors_invalid(): def test_load_hash_vectors(): vector_data = textwrap.dedent(""" - # http://tools.ietf.org/html/rfc1321 + # https://tools.ietf.org/html/rfc1321 [irrelevant] Len = 0 @@ -327,7 +327,7 @@ MD = 750c783e6ab0b503eaa86e310a5db738 def test_load_hash_vectors_bad_data(): vector_data = textwrap.dedent(""" - # http://tools.ietf.org/html/rfc1321 + # https://tools.ietf.org/html/rfc1321 Len = 0 Msg = 00 diff --git a/tests/utils.py b/tests/utils.py index af7f766c..364a349b 100644 --- a/tests/utils.py +++ b/tests/utils.py @@ -435,7 +435,7 @@ def load_fips_dsa_sig_vectors(vector_data): return vectors -# http://tools.ietf.org/html/rfc4492#appendix-A +# https://tools.ietf.org/html/rfc4492#appendix-A _ECDSA_CURVE_NAMES = { "P-192": "secp192r1", "P-224": "secp224r1", |