diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2015-08-01 17:21:05 -0400 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2015-08-01 17:21:05 -0400 |
commit | 93b5e3efab0337c51c84c27208d9034b607f09e2 (patch) | |
tree | 3142f0cd87e39847ed1d26d343f25afa63cd794b /docs/x509 | |
parent | dc1f7f7c0c2959eb2641e96460edec37350965f7 (diff) | |
parent | 24283d22ef0e44e94aeef6cf170448240e83fcb2 (diff) | |
download | cryptography-93b5e3efab0337c51c84c27208d9034b607f09e2.tar.gz cryptography-93b5e3efab0337c51c84c27208d9034b607f09e2.tar.bz2 cryptography-93b5e3efab0337c51c84c27208d9034b607f09e2.zip |
Merge pull request #2188 from reaperhulk/improve-changelog
Improve changelog
Diffstat (limited to 'docs/x509')
-rw-r--r-- | docs/x509/reference.rst | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/docs/x509/reference.rst b/docs/x509/reference.rst index 9179468f..c7d45c77 100644 --- a/docs/x509/reference.rst +++ b/docs/x509/reference.rst @@ -431,6 +431,25 @@ X.509 CSR (Certificate Signing Request) Object >>> isinstance(csr.signature_hash_algorithm, hashes.SHA1) True + .. attribute:: extensions + + :type: :class:`Extensions` + + The extensions encoded in the certificate signing request. + + :raises cryptography.x509.DuplicateExtension: If more than one + extension of the same type is found within the certificate signing request. + + :raises cryptography.x509.UnsupportedExtension: If the certificate signing request + contains an extension that is not supported. + + :raises cryptography.x509.UnsupportedGeneralNameType: If an extension + contains a general name that is not supported. + + :raises UnicodeError: If an extension contains IDNA encoding that is + invalid or not compliant with IDNA 2008. + + .. method:: public_bytes(encoding) .. versionadded:: 1.0 |