aboutsummaryrefslogtreecommitdiffstats
path: root/tests/utils.py
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2014-04-30 12:14:48 -0500
committerPaul Kehrer <paul.l.kehrer@gmail.com>2014-04-30 12:14:48 -0500
commit14951f4252814c0cfcde5db05b4af12e93f570a9 (patch)
treed33648e59fb51b8af16f7d4a913280db793bf17e /tests/utils.py
parentd0dc6a36a5747208c7a5ced15521fef033ce7880 (diff)
downloadcryptography-14951f4252814c0cfcde5db05b4af12e93f570a9.tar.gz
cryptography-14951f4252814c0cfcde5db05b4af12e93f570a9.tar.bz2
cryptography-14951f4252814c0cfcde5db05b4af12e93f570a9.zip
rename dss_sig_value -> der_encode_dsa_signature
Diffstat (limited to 'tests/utils.py')
-rw-r--r--tests/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/utils.py b/tests/utils.py
index 483291e3..c80e97b7 100644
--- a/tests/utils.py
+++ b/tests/utils.py
@@ -90,7 +90,7 @@ class _DSSSigValue(univ.Sequence):
)
-def dss_sig_value(r, s):
+def der_encode_dsa_signature(r, s):
sig = _DSSSigValue()
sig.setComponentByName('r', r)
sig.setComponentByName('s', s)