diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-02-05 16:21:19 -0600 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-02-05 16:21:19 -0600 |
commit | d258222091c9ac2d5a701debca356e3d9a3f8559 (patch) | |
tree | fe048552f073051a18456e1fdfc7d50c42ecb1b2 /docs/hazmat/backends | |
parent | c91f2392f9cd5b63e1d0440ce851db768944964a (diff) | |
download | cryptography-d258222091c9ac2d5a701debca356e3d9a3f8559.tar.gz cryptography-d258222091c9ac2d5a701debca356e3d9a3f8559.tar.bz2 cryptography-d258222091c9ac2d5a701debca356e3d9a3f8559.zip |
remove deactivate and replace with activate_builtin_random
Diffstat (limited to 'docs/hazmat/backends')
-rw-r--r-- | docs/hazmat/backends/openssl.rst | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/docs/hazmat/backends/openssl.rst b/docs/hazmat/backends/openssl.rst index f7d6b710..ea72af96 100644 --- a/docs/hazmat/backends/openssl.rst +++ b/docs/hazmat/backends/openssl.rst @@ -27,12 +27,9 @@ The `OpenSSL`_ C library. Activates the OS random engine. This will effectively disable OpenSSL's default CSPRNG. - .. method:: deactivate_osrandom_engine() + .. method:: activate_builtin_random() - Deactivates the OS random engine if it is default. This will restore - the default OpenSSL CSPRNG. If the OS random engine is not the default - engine (e.g. if another engine is set as default) nothing will be - changed. + This will activate the default OpenSSL CSPRNG. OS Random Engine ---------------- |