diff options
author | Pablo Lefort <lefortpablo@gmail.com> | 2017-12-20 23:33:07 -0300 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2017-12-20 21:33:07 -0500 |
commit | a481e660a861ecf9ba25b517262d406fdbb82d8a (patch) | |
tree | 66df12e605d0c8d00c91db7ae642399d0602716a /docs | |
parent | 5db4e5e77ee40521cd732058262e228be4430588 (diff) | |
download | cryptography-a481e660a861ecf9ba25b517262d406fdbb82d8a.tar.gz cryptography-a481e660a861ecf9ba25b517262d406fdbb82d8a.tar.bz2 cryptography-a481e660a861ecf9ba25b517262d406fdbb82d8a.zip |
Add import default backend (#4061)
* Add import default backend
* Revert blank line in
Diffstat (limited to 'docs')
-rw-r--r-- | docs/hazmat/primitives/asymmetric/rsa.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/hazmat/primitives/asymmetric/rsa.rst b/docs/hazmat/primitives/asymmetric/rsa.rst index 607cebb1..4634dd45 100644 --- a/docs/hazmat/primitives/asymmetric/rsa.rst +++ b/docs/hazmat/primitives/asymmetric/rsa.rst @@ -64,6 +64,7 @@ markers), you can load it: .. code-block:: pycon + >>> from cryptography.hazmat.backends import default_backend >>> from cryptography.hazmat.primitives import serialization >>> with open("path/to/key.pem", "rb") as key_file: |