aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2015-12-19 12:24:52 -0600
committerPaul Kehrer <paul.l.kehrer@gmail.com>2015-12-19 12:24:52 -0600
commite3f46c6d228161957e0549bfa838ba8791c1bb36 (patch)
treecb1b58308edd44293751d97ccb71e33d1eb16e97 /tests
parent22192569968f553ea686379a8c874311af592699 (diff)
parentd242ebbfd73a5b0aeb085e903cadbe4f13b5d63d (diff)
downloadcryptography-e3f46c6d228161957e0549bfa838ba8791c1bb36.tar.gz
cryptography-e3f46c6d228161957e0549bfa838ba8791c1bb36.tar.bz2
cryptography-e3f46c6d228161957e0549bfa838ba8791c1bb36.zip
Merge pull request #2535 from alex/encode-dss
use the non-deprecated name for this function
Diffstat (limited to 'tests')
-rw-r--r--tests/hazmat/primitives/test_ec.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/hazmat/primitives/test_ec.py b/tests/hazmat/primitives/test_ec.py
index a0417fbd..86132678 100644
--- a/tests/hazmat/primitives/test_ec.py
+++ b/tests/hazmat/primitives/test_ec.py
@@ -19,7 +19,7 @@ from cryptography.hazmat.backends.interfaces import (
from cryptography.hazmat.primitives import hashes, serialization
from cryptography.hazmat.primitives.asymmetric import ec
from cryptography.hazmat.primitives.asymmetric.utils import (
- encode_rfc6979_signature
+ encode_dss_signature
)
from .fixtures_ec import EC_KEY_SECP384R1
@@ -434,7 +434,7 @@ class TestECDSAVectors(object):
curve_type()
).public_key(backend)
- signature = encode_rfc6979_signature(vector['r'], vector['s'])
+ signature = encode_dss_signature(vector['r'], vector['s'])
verifier = key.verifier(
signature,
@@ -463,7 +463,7 @@ class TestECDSAVectors(object):
curve_type()
).public_key(backend)
- signature = encode_rfc6979_signature(vector['r'], vector['s'])
+ signature = encode_dss_signature(vector['r'], vector['s'])
verifier = key.verifier(
signature,