diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2013-10-31 11:23:02 -0700 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2013-10-31 11:23:02 -0700 |
commit | 8eac3053cf7ba196d956a53e16160e7462a54f0e (patch) | |
tree | 7ec03ebd7a12d3bcbf3371869f50ef9475ec958a /tests/utils.py | |
parent | 413bd8b45a51dc9c9afe3262534abba2d8528457 (diff) | |
parent | 6adaf277a100412826af6c8cdd31753832c5609a (diff) | |
download | cryptography-8eac3053cf7ba196d956a53e16160e7462a54f0e.tar.gz cryptography-8eac3053cf7ba196d956a53e16160e7462a54f0e.tar.bz2 cryptography-8eac3053cf7ba196d956a53e16160e7462a54f0e.zip |
Merge branch 'master' into fernet
Diffstat (limited to 'tests/utils.py')
-rw-r--r-- | tests/utils.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/utils.py b/tests/utils.py index ad676c04..99ba2e2f 100644 --- a/tests/utils.py +++ b/tests/utils.py @@ -53,7 +53,7 @@ def load_nist_vectors(vector_data, op): def load_nist_vectors_from_file(filename, op): base = os.path.join( - os.path.dirname(__file__), "hazmat", "primitives", "vectors", "NIST", + os.path.dirname(__file__), "hazmat", "primitives", "vectors", ) with open(os.path.join(base, filename), "r") as vector_file: return load_nist_vectors(vector_file, op) @@ -62,7 +62,7 @@ def load_nist_vectors_from_file(filename, op): def load_cryptrec_vectors_from_file(filename): base = os.path.join( os.path.dirname(__file__), - "hazmat", "primitives", "vectors", "CRYPTREC", + "hazmat", "primitives", "vectors", ) with open(os.path.join(base, filename), "r") as vector_file: return load_cryptrec_vectors(vector_file) @@ -99,7 +99,7 @@ def load_cryptrec_vectors(vector_data): def load_openssl_vectors_from_file(filename): base = os.path.join( os.path.dirname(__file__), - "hazmat", "primitives", "vectors", "OpenSSL", + "hazmat", "primitives", "vectors", ) with open(os.path.join(base, filename), "r") as vector_file: return load_openssl_vectors(vector_file) |