Spaces:
Running
Running
Next
commited on
Commit
•
8a4dcaf
1
Parent(s):
01fb810
Update app.py
Browse files
app.py
CHANGED
@@ -129,5 +129,10 @@ with gr.Blocks() as demo:
|
|
129 |
rsa_private_output = gr.Textbox(label="Private Key")
|
130 |
rsa_public_output = gr.Textbox(label="Public Key")
|
131 |
gr.Button("Generate Keys").click(rsa_keys, [], [rsa_private_output, rsa_public_output])
|
132 |
-
|
|
|
|
|
|
|
|
|
|
|
133 |
demo.launch()
|
|
|
129 |
rsa_private_output = gr.Textbox(label="Private Key")
|
130 |
rsa_public_output = gr.Textbox(label="Public Key")
|
131 |
gr.Button("Generate Keys").click(rsa_keys, [], [rsa_private_output, rsa_public_output])
|
132 |
+
gr.Markdown(
|
133 |
+
"""
|
134 |
+
this spaces made by [Nex432](https://huggingface.co/spaces/Nex432/gr-encrypt) just for fun :D
|
135 |
+
"""
|
136 |
+
)
|
137 |
+
|
138 |
demo.launch()
|