fork download
  1. import base64
  2. import hashlib
  3.  
  4. password = '111111'
  5. hash = hashlib.sha256(password.encode('utf-8')).digest()
  6. print(base64.b64encode(hash).decode())
Success #stdin #stdout 0.02s 37368KB
stdin
Standard input is empty
stdout
vLFfghR5tNV3K9DKhmwArV+SbjWAcgZZzIDTnJ0JgCo=