diff options
Diffstat (limited to 'Doc/library/secrets.rst')
-rw-r--r-- | Doc/library/secrets.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/secrets.rst b/Doc/library/secrets.rst index eda4616..86fa35f 100644 --- a/Doc/library/secrets.rst +++ b/Doc/library/secrets.rst @@ -44,7 +44,7 @@ randomness that your operating system provides. .. function:: choice(sequence) - Return a randomly-chosen element from a non-empty sequence. + Return a randomly chosen element from a non-empty sequence. .. function:: randbelow(n) @@ -155,7 +155,7 @@ Generate an eight-character alphanumeric password: Applications should not `store passwords in a recoverable format <http://cwe.mitre.org/data/definitions/257.html>`_, whether plain text or encrypted. They should be salted and hashed - using a cryptographically-strong one-way (irreversible) hash function. + using a cryptographically strong one-way (irreversible) hash function. Generate a ten-character alphanumeric password with at least one |