diff options
author | BonfaceKilz | 2020-09-17 17:34:11 +0300 |
---|---|---|
committer | BonfaceKilz | 2020-09-17 17:34:11 +0300 |
commit | 6064148eb2b723a308f0d29595a75ab64f47e1e2 (patch) | |
tree | 45bd475df49f2a8c30bf3773e08ce12821b41207 /wqflask/utility | |
parent | 16faa26e52b1f0191595e16550d553907d2f9d67 (diff) | |
download | genenetwork2-6064148eb2b723a308f0d29595a75ab64f47e1e2.tar.gz |
Replace string arguments to "hmac.new" with bytearray
Same as:
https://github.com/genenetwork/genenetwork2/pull/422/commits/46443ec8d2cdfd7c60358a889d90a90e4f7daaf4
Diffstat (limited to 'wqflask/utility')
-rw-r--r-- | wqflask/utility/hmac.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/wqflask/utility/hmac.py b/wqflask/utility/hmac.py index 10387bb0..6623f69a 100644 --- a/wqflask/utility/hmac.py +++ b/wqflask/utility/hmac.py @@ -10,7 +10,9 @@ def hmac_creation(stringy): """Helper function to create the actual hmac""" secret = app.config['SECRET_HMAC_CODE'] - hmaced = hmac.new(secret, stringy, hashlib.sha1) + hmaced = hmac.new(bytearray(secret, "utf-8"), + bytearray(stringy, "utf-8"), + hashlib.sha1) hm = hmaced.hexdigest() # ZS: Leaving the below comment here to ask Pjotr about # "Conventional wisdom is that you don't lose much in terms of security if you throw away up to half of the output." |