summaryrefslogtreecommitdiff
path: root/app.py
diff options
context:
space:
mode:
authorcyfraeviolae <cyfraeviolae>2022-08-28 02:50:49 -0400
committercyfraeviolae <cyfraeviolae>2022-08-28 02:50:49 -0400
commit3a71d6c72837287afe376bbeecc9091d48592b4a (patch)
tree81f804ac45280e03ffcfbfc145f911ffec1e5f4d /app.py
parent6841c554cbbeb619ac9e1d40bb20da4b707818d2 (diff)
fix sample
Diffstat (limited to 'app.py')
-rw-r--r--app.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/app.py b/app.py
index cf3ac79..4029b7f 100644
--- a/app.py
+++ b/app.py
@@ -161,10 +161,10 @@ def key_commitment():
if form.is_submitted():
if form.validate():
if form.mode.data == 'sample':
- jpeg_bytes = open('static/axolotl.jpg', 'rb').read()
- bmp_bytes = open('static/kitten.bmp', 'rb').read()
- # return send_file('static/sample-polyglot.enc',
- # mimetype='application/octet-stream', as_attachment=True, download_name="polyglot.enc")
+ # jpeg_bytes = open('static/axolotl.jpg', 'rb').read()
+ # bmp_bytes = open('static/kitten.bmp', 'rb').read()
+ return send_file('static/sample-polyglot.enc',
+ mimetype='application/octet-stream', as_attachment=True, download_name="polyglot.enc")
else:
jpeg_bytes = form.jpeg.data.read()
bmp_bytes = form.bmp.data.read()