diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2015-04-11 09:21:33 -0400 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2015-04-11 09:21:33 -0400 |
commit | 412a273d45c00dd7a58fe64390fddad74d12f453 (patch) | |
tree | 289d73a81087fcacc0b3665ee85f177d05288e55 /docs | |
parent | de2c10753787f3cc563cf2880454ddc5bd945b18 (diff) | |
parent | 6c7dd24f350435f6362021822dcd7e51902088ec (diff) | |
download | cryptography-412a273d45c00dd7a58fe64390fddad74d12f453.tar.gz cryptography-412a273d45c00dd7a58fe64390fddad74d12f453.tar.bz2 cryptography-412a273d45c00dd7a58fe64390fddad74d12f453.zip |
Merge pull request #1823 from reaperhulk/x509-ski
add subjectkeyidentifier support
Diffstat (limited to 'docs')
-rw-r--r-- | docs/x509.rst | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/docs/x509.rst b/docs/x509.rst index afc9620a..d09651fb 100644 --- a/docs/x509.rst +++ b/docs/x509.rst @@ -275,6 +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(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 @@ -576,6 +577,19 @@ X.509 Extensions purposes indicated in the key usage extension. The object is iterable to obtain the list of :ref:`extended key usage OIDs <eku_oids>`. +.. class:: SubjectKeyIdentifier + + .. versionadded:: 0.9 + + The subject key identifier extension provides a means of identifying + certificates that contain a particular public key. + + .. attribute:: digest + + :type: bytes + + The binary value of the identifier. + Object Identifiers ~~~~~~~~~~~~~~~~~~ |