mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 01:07:45 +01:00
Fix hmac with non-ASCII passwords
This commit is contained in:
parent
7b630bfb8b
commit
e063f2aaea
1 changed files with 1 additions and 1 deletions
|
@ -236,7 +236,7 @@ def start_web_server(args):
|
|||
PASSWORD = js.get('password') or PASSWORD
|
||||
|
||||
if PASSWORD:
|
||||
PASSWORD = hmac.new(PASSWORD).digest()
|
||||
PASSWORD = hmac.new(str(PASSWORD)).digest()
|
||||
# Use the digest of the password as our cookie secret. This makes sure the cookie
|
||||
# isn't too short. It, of course, enables local hash brute forcing (because the cookie
|
||||
# secret can be brute forced without making requests). But the hashing algorithm used
|
||||
|
|
Loading…
Reference in a new issue