fork download
  1. import base64
  2.  
  3. encoded_data = "KRUGKIDGNRQWOIDJOMQGG4TZOB2G662CGMZF6YZQMQYW4Z27IIYWOXZQNZWHS7I="
  4. decoded_data = base64.b32decode(encoded_data)
  5. decoded_string = decoded_data.decode('utf-8')
  6.  
  7. print(f"crypto{{{decoded_string}}}")
Success #stdin #stdout 0.03s 25628KB
stdin
Standard input is empty
stdout
import base64

encoded_data = "KRUGKIDGNRQWOIDJOMQGG4TZOB2G662CGMZF6YZQMQYW4Z27IIYWOXZQNZWHS7I="
decoded_data = base64.b32decode(encoded_data)
decoded_string = decoded_data.decode('utf-8')

print(f"crypto{{{decoded_string}}}")