Spaces:
Sleeping
Sleeping
Next
commited on
Update app.py
Browse files
app.py
CHANGED
|
@@ -94,6 +94,12 @@ def rsa_keys():
|
|
| 94 |
|
| 95 |
# Gradio Blocks interface
|
| 96 |
with gr.Blocks() as demo:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 97 |
with gr.Tab("Caesar Cipher"):
|
| 98 |
with gr.Row():
|
| 99 |
caesar_text = gr.Textbox(label="Text")
|
|
|
|
| 94 |
|
| 95 |
# Gradio Blocks interface
|
| 96 |
with gr.Blocks() as demo:
|
| 97 |
+
gr.Markdown(
|
| 98 |
+
"""
|
| 99 |
+
### Simple Gradio Demo of encryption and decryption process, using Caesar Chiper, Advanced Encryption Standard (AES), and Rivest–Shamir–Adleman (RSA) method.
|
| 100 |
+
|
| 101 |
+
"""
|
| 102 |
+
)
|
| 103 |
with gr.Tab("Caesar Cipher"):
|
| 104 |
with gr.Row():
|
| 105 |
caesar_text = gr.Textbox(label="Text")
|