dukia / App.py
Redscum's picture
Create App.py
51171ff verified
raw
history blame contribute delete
228 Bytes
import gradio as gr, base64, blake3, os, json
key = os.getenv("K", "506959266248")
def go(h): return blake3.blake3((key+h).encode()).hexdigest()
gr.Interface(go, gr.Textbox(label="hex-in"), gr.Textbox(label="hash-out")).launch()