diff options
author | Abhijeet Rastogi <abhijeet.1989@gmail.com> | 2015-08-15 08:44:14 +0530 |
---|---|---|
committer | Abhijeet Rastogi <abhijeet.1989@gmail.com> | 2015-08-15 08:44:14 +0530 |
commit | a5e999a91a05e93285c3f9878ff33faf199323e7 (patch) | |
tree | 8e92e5e53340ebb351f3638ebf6f2a8910fa05c2 /docs/x509 | |
parent | 5e885db2e77b054a6597c1ddea4e7905b8350040 (diff) | |
download | cryptography-a5e999a91a05e93285c3f9878ff33faf199323e7.tar.gz cryptography-a5e999a91a05e93285c3f9878ff33faf199323e7.tar.bz2 cryptography-a5e999a91a05e93285c3f9878ff33faf199323e7.zip |
Update tutorial.rst as it was missing an import
Diffstat (limited to 'docs/x509')
-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. |