We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 838bf23 commit 29fd839Copy full SHA for 29fd839
webhooks.py
@@ -81,8 +81,9 @@ def index():
81
if not hmac.compare_digest(str(mac.hexdigest()), str(signature)):
82
abort(403)
83
else:
84
- # What compare_digest provides is protection against timing attacks; we
85
- # can live without this protection for a web-based application
+ # What compare_digest provides is protection against timing
+ # attacks; we can live without this protection for a web-based
86
+ # application
87
if not str(mac.hexdigest()) == str(signature):
88
89
0 commit comments