diff options
-rw-r--r-- | src/cryptography/x509.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/cryptography/x509.py b/src/cryptography/x509.py index 6c9cd562..f54eccf4 100644 --- a/src/cryptography/x509.py +++ b/src/cryptography/x509.py @@ -691,6 +691,7 @@ class SubjectKeyIdentifier(object): spki, remaining = decoder.decode( serialized, asn1Spec=_SubjectPublicKeyInfo() ) + assert not remaining # the univ.BitString object is a tuple of bits. We need bytes and # pyasn1 really doesn't want to give them to us. To get it we'll # build an integer, hex it, then decode the hex. |