Skip to content

Instantly share code, notes, and snippets.

@fluential
Forked from JrooTJunior/check_hash.py
Created October 17, 2022 18:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fluential/ee93ab22436b99793395651429bf11ce to your computer and use it in GitHub Desktop.
Save fluential/ee93ab22436b99793395651429bf11ce to your computer and use it in GitHub Desktop.
telegram site auth
# implementation of Telegram site authorization checking algorithm
# for more information https://core.telegram.org/widgets/login#checking-authorization
import collections
import hmac
import hashlib
def check_string(data, token):
secret = hashlib.sha256()
secret.update(token.encode('utf-8'))
sorted_params = collections.OrderedDict(sorted(d.items()))
param_hash = data.get('hash', '')
msg = "\n".join(["{}={}".format(k, v) for k, v in sorted_params.items() if k != 'hash'])
return param_hash == hmac.new(secret.digest(), msg.encode('utf-8'), digestmod=hashlib.sha256).hexdigest():
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment