diff options
author | Nick Coghlan <ncoghlan@gmail.com> | 2012-09-28 13:20:38 (GMT) |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2012-09-28 13:20:38 (GMT) |
commit | 74cca70ce28859906cfbd4e95520c6add6461d9e (patch) | |
tree | 3d99d3e60f7846d6a20e58406a3fd293e9fd7994 /Doc/library/crypto.rst | |
parent | 2246aa8ac8138dd60e2f6ec5bf5534929d7979db (diff) | |
download | cpython-74cca70ce28859906cfbd4e95520c6add6461d9e.zip cpython-74cca70ce28859906cfbd4e95520c6add6461d9e.tar.gz cpython-74cca70ce28859906cfbd4e95520c6add6461d9e.tar.bz2 |
Now that it's possible, avoid timing attacks in the crypt module examples)
Diffstat (limited to 'Doc/library/crypto.rst')
-rw-r--r-- | Doc/library/crypto.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Doc/library/crypto.rst b/Doc/library/crypto.rst index a233561..469ede49 100644 --- a/Doc/library/crypto.rst +++ b/Doc/library/crypto.rst @@ -8,6 +8,7 @@ Cryptographic Services The modules described in this chapter implement various algorithms of a cryptographic nature. They are available at the discretion of the installation. +On Unix systems, the :mod:`crypt` module may also be available. Here's an overview: |