aboutsummaryrefslogtreecommitdiffstats
path: root/docs/x509.rst
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2015-04-10 20:57:20 -0400
committerPaul Kehrer <paul.l.kehrer@gmail.com>2015-04-10 22:41:48 -0400
commitcbfb1015d9750a276456411a2b638585b6e4d7de (patch)
tree1551291e18ef54ff35c0228a8615fc35cba463ad /docs/x509.rst
parent0f5a66b1d60063b7e7afc5ad2f001fa00cc8ac1e (diff)
downloadcryptography-cbfb1015d9750a276456411a2b638585b6e4d7de.tar.gz
cryptography-cbfb1015d9750a276456411a2b638585b6e4d7de.tar.bz2
cryptography-cbfb1015d9750a276456411a2b638585b6e4d7de.zip
alter approach to just use digest, no hexdigest
Diffstat (limited to 'docs/x509.rst')
-rw-r--r--docs/x509.rst8
1 files changed, 1 insertions, 7 deletions
diff --git a/docs/x509.rst b/docs/x509.rst
index 8a855617..d09651fb 100644
--- a/docs/x509.rst
+++ b/docs/x509.rst
@@ -275,7 +275,7 @@ X.509 Certificate Object
>>> for ext in cert.extensions:
... print(ext)
- <Extension(oid=<ObjectIdentifier(oid=2.5.29.14, name=subjectKeyIdentifier)>, critical=False, value=<SubjectKeyIdentifier(value=580184241bbc2b52944a3da510721451f5af3ac9)>)>
+ <Extension(oid=<ObjectIdentifier(oid=2.5.29.14, name=subjectKeyIdentifier)>, critical=False, value=<SubjectKeyIdentifier(digest='X\x01\x84$\x1b\xbc+R\x94J=\xa5\x10r\x14Q\xf5\xaf:\xc9')>)>
<Extension(oid=<ObjectIdentifier(oid=2.5.29.19, name=basicConstraints)>, critical=True, value=<BasicConstraints(ca=True, path_length=None)>)>
X.509 CSR (Certificate Signing Request) Object
@@ -590,12 +590,6 @@ X.509 Extensions
The binary value of the identifier.
- .. attribute:: hexdigest
-
- :type: :term:`text`
-
- The hexadecimal value of the identifier.
-
Object Identifiers
~~~~~~~~~~~~~~~~~~