requirements/test-web.txt
author Laurent Peuch <cortex@worlddomination.be>
Fri, 12 Apr 2019 12:31:14 +0200
changeset 12584 6eba53763482
parent 12530 9d88e1177c35
permissions -rw-r--r--
Use secure hash algorithm in WebConfiguration.sign_text Fix: PendingDeprecationWarning: HMAC() without an explicit digestmod argument is deprecated. The default hash algorithm used by hmac.new is md5. As of today, md5 is so weak that it's the equivalent of plaintext and can't be considered to be secured at all. Therefor, we switch to a secure hash algorithm. The rational for choosing sha3_512 is: * the recommended algorithm is at least sha_256 * the stronger, the more secured and sha3_512 is the stronger available * thinking about the future this should keep this part of the code safe long enough before people think about checking it again You can read more about choosing a secure hash algorithm in the NIST recommendations https://csrc.nist.gov/Projects/Hash-Functions/NIST-Policy-on-Hash-Functions This code modification should normally be transparent since check_text_sign is exactly this code 'self.sign_text(text) == signature' and that sign_text is only used in combination with it. The only impact is that the hash is going to move from 32 char to 128 which might make html page a bit bigger and that sha3_512 is slow to compute (which is a good thing for security)
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
12337
04ff0d3ef1d3 [py3] Use "utf-8" as input encoding for docutils in rest extension
Denis Laxalde <denis.laxalde@logilab.fr>
parents: 12322
diff changeset
     1
docutils
10511
84cb3299ec40 Add requirements.txt files in test directories
Denis Laxalde <denis.laxalde@logilab.fr>
parents:
diff changeset
     2
requests
84cb3299ec40 Add requirements.txt files in test directories
Denis Laxalde <denis.laxalde@logilab.fr>
parents:
diff changeset
     3
webtest