summaryrefslogtreecommitdiff
path: root/AUTHORS
diff options
context:
space:
mode:
authorOlaf Conradi <olaf@conradi.org>2018-04-13 10:32:01 +0200
committerPieter Ennes <pieter@ennes.nl>2018-04-13 10:32:01 +0200
commitd21fd53e13c044ad034694ee93e97eb7c4aac101 (patch)
tree9b8753ba52e5a4f1e52d2ea0a4cfc25d01edbf68 /AUTHORS
parentd49b9f02a821dca920c89b24540485da3b96bf1e (diff)
downloadoauthlib-d21fd53e13c044ad034694ee93e97eb7c4aac101.tar.gz
Use secrets module in Python 3.6 and later (#533)
The secrets module should be used for generating cryptographically strong random numbers suitable for managing data such as passwords, account authentication, security tokens, and related secrets. In particularly, secrets should be used in preference to the default pseudo-random number generator in the random module, which is designed for modelling and simulation, not security or cryptography.
Diffstat (limited to 'AUTHORS')
-rw-r--r--AUTHORS1
1 files changed, 1 insertions, 0 deletions
diff --git a/AUTHORS b/AUTHORS
index 7d5d9ad..f52ce9a 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -28,3 +28,4 @@ Joel Stevenson
Brendan McCollam
Jonathan Huot
Pieter Ennes
+Olaf Conradi