diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2015-08-14 23:40:13 -0500 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2015-08-14 23:40:13 -0500 |
commit | ae9ae087aeddb2157a6588a424ff5b14243f748c (patch) | |
tree | 8e92e5e53340ebb351f3638ebf6f2a8910fa05c2 /docs | |
parent | 5e885db2e77b054a6597c1ddea4e7905b8350040 (diff) | |
parent | a5e999a91a05e93285c3f9878ff33faf199323e7 (diff) | |
download | cryptography-ae9ae087aeddb2157a6588a424ff5b14243f748c.tar.gz cryptography-ae9ae087aeddb2157a6588a424ff5b14243f748c.tar.bz2 cryptography-ae9ae087aeddb2157a6588a424ff5b14243f748c.zip |
Merge pull request #2277 from shadyabhi/patch-1
Update tutorial.rst as it was missing an import
Diffstat (limited to 'docs')
-rw-r--r-- | docs/x509/tutorial.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/x509/tutorial.rst b/docs/x509/tutorial.rst index 4caa90b5..6e587d8b 100644 --- a/docs/x509/tutorial.rst +++ b/docs/x509/tutorial.rst @@ -58,6 +58,7 @@ a few details: >>> from cryptography import x509 >>> from cryptography.x509.oid import NameOID + >>> from cryptography.hazmat.primitives import hashes >>> # Generate a CSR >>> csr = x509.CertificateSigningRequestBuilder().subject_name(x509.Name([ ... # Provide various details about who we are. |