diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2015-10-13 15:13:34 -0500 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2015-10-13 15:13:34 -0500 |
commit | af3ea78c9ad85cc0688797eb0da8f828812f3f49 (patch) | |
tree | 00162870e409ccefde78b8dad6b1c9e463f62009 /tests/utils.py | |
parent | e69b975dd14f2981c288ffadc6d7f9fa225c4d6d (diff) | |
parent | 6e3b155bb684bb036fba277756a0ca47ce551443 (diff) | |
download | cryptography-af3ea78c9ad85cc0688797eb0da8f828812f3f49.tar.gz cryptography-af3ea78c9ad85cc0688797eb0da8f828812f3f49.tar.bz2 cryptography-af3ea78c9ad85cc0688797eb0da8f828812f3f49.zip |
Merge pull request #2414 from simo5/fixECtestLoader
Fix load_kasvs_ecdh_vectors() COUNT sourcing
Diffstat (limited to 'tests/utils.py')
-rw-r--r-- | tests/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/utils.py b/tests/utils.py index cc3f9fcc..3970109e 100644 --- a/tests/utils.py +++ b/tests/utils.py @@ -722,7 +722,7 @@ def load_kasvs_ecdh_vectors(vector_data): if line.startswith("["): tag = line.split()[0][1:] elif line.startswith("COUNT = "): - data["COUNT"] = int(line.split("=")[1], 16) + data["COUNT"] = int(line.split("=")[1]) elif line.startswith("dsCAVS = "): data["CAVS"]["d"] = int(line.split("=")[1], 16) elif line.startswith("QsCAVSx = "): |