diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-12-16 14:47:52 -0600 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-12-16 14:47:52 -0600 |
commit | 78a815099106a372db5eb0a49fe5c91767a7438b (patch) | |
tree | c4dc141eea87ee228aad6523d4ab8df3a6deaeb5 | |
parent | cc8a26e32bd0dfc0624a6e33edba2172371f1686 (diff) | |
download | cryptography-78a815099106a372db5eb0a49fe5c91767a7438b.tar.gz cryptography-78a815099106a372db5eb0a49fe5c91767a7438b.tar.bz2 cryptography-78a815099106a372db5eb0a49fe5c91767a7438b.zip |
fix some 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 1e86df21..50790b94 100644 --- a/docs/x509.rst +++ b/docs/x509.rst @@ -114,7 +114,7 @@ X.509 Certificate Object >>> from cryptography.hazmat.primitives import hashes >>> cert.fingerprint(hashes.SHA256()) - '...' + '\x86\xd2\x187Gc\xfc\xe7}[+E9\x8d\xb4\x8f\x10\xe5S\xda\x18u\xbe}a\x03\x08[\xac\xa04?' .. attribute:: serial @@ -147,8 +147,8 @@ X.509 Certificate Object :type: :class:`datetime.datetime` - A naïve datetime representing the beginning of the validity period for the - certificate in UTC. This value is inclusive. + A naïve datetime representing the beginning of the validity period for + the certificate in UTC. This value is inclusive. .. doctest:: @@ -159,8 +159,8 @@ X.509 Certificate Object :type: :class:`datetime.datetime` - A naïve datetime representing the end of the validity period for the - certificate in UTC. This value is inclusive. + A naïve datetime representing the end of the validity period for the + certificate in UTC. This value is inclusive. .. doctest:: |