Merge remote-tracking branch 'origin/main'

This commit is contained in:
Lukian 2025-01-21 11:48:27 +01:00
commit 6b57266ac3
2 changed files with 7 additions and 1 deletions

View file

@ -1,2 +1,4 @@
from flask import *
import OpenSSL as ssl
import OpenSSL as ssl
import requests

View file

@ -12,5 +12,9 @@ app= Flask(__name__)
def index():
return render_template("index.html")
@app.route('/data', methods=['POST'])
def index():
encrypted_data = request.form['data']
if __name__ == "__main__":
app.run(ssl_context=context)