⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.74
Server IP:
104.21.80.1
Server:
Linux vmi2315822.contaboserver.net 5.15.0-134-generic #145-Ubuntu SMP Wed Feb 12 20:08:39 UTC 2025 x86_64
Server Software:
LiteSpeed
PHP Version:
8.3.21
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
lib
/
python3
/
dist-packages
/
pymacaroons
/
binders
/
View File Name :
hash_signatures_binder.py
import binascii from pymacaroons.binders.base_binder import BaseBinder from pymacaroons.utils import hmac_concat, truncate_or_pad class HashSignaturesBinder(BaseBinder): def __init__(self, root, key=None): super(HashSignaturesBinder, self).__init__(root) self.key = key or truncate_or_pad(b'\0') def bind_signature(self, signature): return hmac_concat( self.key, binascii.unhexlify(self.root.signature_bytes), binascii.unhexlify(signature) )