Update server/app.py
Browse files- server/app.py +1 -1
server/app.py
CHANGED
@@ -156,7 +156,7 @@ with gr.Blocks(title="Secure Decoder API", theme=gr.themes.Soft()) as demo:
|
|
156 |
gr.Markdown("## How to Use This API")
|
157 |
gr.Markdown("### Step 1: Get the Server's Public Key")
|
158 |
gr.Markdown("You must use this public key to encrypt data intended for this server. Save it to a file (e.g., `server_pub.pem`).")
|
159 |
-
gr.Code(value=PUBLIC_KEY_PEM_STRING, language="
|
160 |
|
161 |
with gr.Accordion("Step 2: Create the Encrypted Image (Client-Side Python Example)", open=True):
|
162 |
gr.Markdown("Use the following Python code in your client application to create a KeyLock image.")
|
|
|
156 |
gr.Markdown("## How to Use This API")
|
157 |
gr.Markdown("### Step 1: Get the Server's Public Key")
|
158 |
gr.Markdown("You must use this public key to encrypt data intended for this server. Save it to a file (e.g., `server_pub.pem`).")
|
159 |
+
gr.Code(value=PUBLIC_KEY_PEM_STRING, language="python", label="Server Public Key")
|
160 |
|
161 |
with gr.Accordion("Step 2: Create the Encrypted Image (Client-Side Python Example)", open=True):
|
162 |
gr.Markdown("Use the following Python code in your client application to create a KeyLock image.")
|