aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2014-02-05 17:06:10 -0600
committerPaul Kehrer <paul.l.kehrer@gmail.com>2014-02-05 17:06:10 -0600
commitf389f84fc7bb4d20ac00c571f221185d5b4874a8 (patch)
tree4d299131cbfbfb42497bfbb6b62dbc2febb05b60
parentb02ed2aa7670f12c4d507bee1d33483f0f7d66c9 (diff)
downloadcryptography-f389f84fc7bb4d20ac00c571f221185d5b4874a8.tar.gz
cryptography-f389f84fc7bb4d20ac00c571f221185d5b4874a8.tar.bz2
cryptography-f389f84fc7bb4d20ac00c571f221185d5b4874a8.zip
improve comments
-rw-r--r--cryptography/hazmat/backends/openssl/backend.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/cryptography/hazmat/backends/openssl/backend.py b/cryptography/hazmat/backends/openssl/backend.py
index 83a65b32..6da90cef 100644
--- a/cryptography/hazmat/backends/openssl/backend.py
+++ b/cryptography/hazmat/backends/openssl/backend.py
@@ -61,11 +61,11 @@ class Backend(object):
self.activate_osrandom_engine()
def activate_builtin_random(self):
- # obtains a new structural reference
+ # Obtain a new structural reference.
e = self._lib.ENGINE_get_default_RAND()
if e != self._ffi.NULL:
self._lib.ENGINE_unregister_RAND(e)
- # this resets the RNG to use the new engine
+ # Reset the RNG to use the new engine.
self._lib.RAND_cleanup()
# decrement the structural reference from get_default_RAND
res = self._lib.ENGINE_finish(e)
@@ -84,13 +84,13 @@ class Backend(object):
# Set the engine as the default RAND provider.
res = self._lib.ENGINE_set_default_RAND(e)
assert res == 1
- # decrement the structural ref incremented by ENGINE_by_id
+ # Decrement the structural ref incremented by ENGINE_by_id.
res = self._lib.ENGINE_free(e)
assert res == 1
- # decrement the functional ref incremented by ENGINE_init
+ # Decrement the functional ref incremented by ENGINE_init.
res = self._lib.ENGINE_finish(e)
assert res == 1
- # Reset the RNG to use the new engine
+ # Reset the RNG to use the new engine.
self._lib.RAND_cleanup()
def openssl_version_text(self):