aboutsummaryrefslogtreecommitdiffstats
path: root/docs/x509/reference.rst
diff options
context:
space:
mode:
authorMarti Raudsepp <marti@juffo.org>2018-12-18 01:26:40 +0200
committerPaul Kehrer <paul.l.kehrer@gmail.com>2018-12-18 07:26:40 +0800
commit824155743fe3087bb2b2116ad3a8a363f550f9ab (patch)
tree67eb672c872e824525ed77b05e79806bf27c240a /docs/x509/reference.rst
parent89e1e34d977e565171329c26de6ce9c8f12340e7 (diff)
downloadcryptography-824155743fe3087bb2b2116ad3a8a363f550f9ab.tar.gz
cryptography-824155743fe3087bb2b2116ad3a8a363f550f9ab.tar.bz2
cryptography-824155743fe3087bb2b2116ad3a8a363f550f9ab.zip
Remove spaces from RFC 4514 strings for better compliance (#4643) (#4646)
RFC 4514 does not explicitly allow whitespace between separators: https://tools.ietf.org/html/rfc4514 Reported-by: David Arnold <dar@xoe.solutions>
Diffstat (limited to 'docs/x509/reference.rst')
-rw-r--r--docs/x509/reference.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/x509/reference.rst b/docs/x509/reference.rst
index ac6bbcdc..6b2f74cf 100644
--- a/docs/x509/reference.rst
+++ b/docs/x509/reference.rst
@@ -583,7 +583,7 @@ X.509 CRL (Certificate Revocation List) Object
.. doctest::
>>> crl.issuer
- <Name(C=US, CN=cryptography.io)>
+ <Name(C=US,CN=cryptography.io)>
.. attribute:: next_update
@@ -1194,7 +1194,7 @@ X.509 CSR (Certificate Signing Request) Builder Object
get every attribute or you can use :meth:`Name.get_attributes_for_oid` to
obtain the specific type you want. Names are sometimes represented as a
slash or comma delimited string (e.g. ``/CN=mydomain.com/O=My Org/C=US`` or
- ``CN=mydomain.com, O=My Org, C=US``).
+ ``CN=mydomain.com,O=My Org,C=US``).
Technically, a Name is a list of *sets* of attributes, called *Relative
Distinguished Names* or *RDNs*, although multi-valued RDNs are rarely
@@ -1251,7 +1251,7 @@ X.509 CSR (Certificate Signing Request) Builder Object
.. versionadded:: 2.5
:return str: Format the given name as a `RFC 4514`_ Distinguished Name
- string, for example ``CN=mydomain.com, O=My Org, C=US``.
+ string, for example ``CN=mydomain.com,O=My Org,C=US``.
.. class:: Version