diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2015-02-02 17:05:24 -0600 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2015-02-02 17:05:24 -0600 |
commit | 806bfb24feb254287c588da4887b45025bec3623 (patch) | |
tree | 0d63918550a2fb0d701c0408eba624ef76529851 /docs | |
parent | 5b0a8d63ab9215d9d5877df1d1c99a32d98bf8e2 (diff) | |
download | cryptography-806bfb24feb254287c588da4887b45025bec3623.tar.gz cryptography-806bfb24feb254287c588da4887b45025bec3623.tar.bz2 cryptography-806bfb24feb254287c588da4887b45025bec3623.zip |
rename Attribute to NameAttribute and remove name from OID
Diffstat (limited to 'docs')
-rw-r--r-- | docs/x509.rst | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/x509.rst b/docs/x509.rst index 42b95a11..5ad69972 100644 --- a/docs/x509.rst +++ b/docs/x509.rst @@ -181,11 +181,11 @@ X.509 Certificate Object For version 3 X.509 certificates. -.. class:: Attribute +.. class:: NameAttribute .. versionadded:: 0.8 - An X.509 name consists of a list of Attribute objects. + An X.509 name consists of a list of NameAttribute objects. .. attribute:: oid @@ -204,7 +204,7 @@ X.509 Certificate Object .. versionadded:: 0.8 Object identifiers (frequently seen abbreviated as OID) identify the type - of a value (see: :class:`Attribute`). + of a value (see: :class:`NameAttribute`). .. attribute:: value @@ -261,9 +261,9 @@ Exceptions Returns the raw version that was parsed from the certificate. -.. class:: UnknownAttribute +.. class:: UnknownNameAttribute - This is raised when an X.509 certificate has an unknown attribute in a + This is raised when an X.509 certificate has an unknown name attribute in a distinguished name. |