Next commited on
Commit
b200f11
1 Parent(s): 51915bc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -0
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")