aboutsummaryrefslogtreecommitdiffstats
path: root/tests/utils.py
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2014-04-30 09:07:27 -0500
committerPaul Kehrer <paul.l.kehrer@gmail.com>2014-04-30 09:07:27 -0500
commit3fc686ea06d4c2dcaf6b363ec1c54a72d995df88 (patch)
treec599bb3bbb31e38ca9074eebcabe55fbbf5cc7bb /tests/utils.py
parent26f2d5352911ff99c9c7650c926eaa73c432064e (diff)
downloadcryptography-3fc686ea06d4c2dcaf6b363ec1c54a72d995df88.tar.gz
cryptography-3fc686ea06d4c2dcaf6b363ec1c54a72d995df88.tar.bz2
cryptography-3fc686ea06d4c2dcaf6b363ec1c54a72d995df88.zip
dss_sig_value: Pure python conversion of (r, s) to byte stream
Diffstat (limited to 'tests/utils.py')
-rw-r--r--tests/utils.py27
1 files changed, 27 insertions, 0 deletions
diff --git a/tests/utils.py b/tests/utils.py
index 60b6f5a2..d8565130 100644
--- a/tests/utils.py
+++ b/tests/utils.py
@@ -80,6 +80,33 @@ def raises_unsupported_algorithm(reason):
assert exc_info.value._reason is reason
+def _int_to_asn1_int(i):
+ """
+ Used by dss_sig_value to convert python integers to ASN.1 integer bytes.
+ """
+ if i == 0:
+ return b'\x02\x01\x00'
+ if i < 0:
+ raise ValueError("This only supports positive integers right now.")
+ result = []
+ while i:
+ result.append(six.int2byte(i & 0xFF))
+ i >>= 8
+ # ASN.1 integers are stored big endian two's complement, so add a byte if
+ # the ordinal value of the last byte is over 0x7f.
+ if ord(result[-1]) > 127:
+ result.append(b"\x00")
+ result.reverse()
+ packed = b''.join(result)
+ return b"\x02" + chr(len(packed)).encode("ascii") + packed
+
+
+def dss_sig_value(r, s):
+ combined = _int_to_asn1_int(r) + _int_to_asn1_int(s)
+ sig = b"0" + chr(len(combined)).encode("ascii") + combined
+ return sig
+
+
def load_vectors_from_file(filename, loader):
with cryptography_vectors.open_vector_file(filename) as vector_file:
return loader(vector_file)