MCPcopy Create free account
hub / github.com/f0ng/autoDecoder / encrypt

Function encrypt

flasktest.py:35–40  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

33
34@app.route('/encode',methods=["POST"])
35def encrypt():
36 param = request.form.get('dataBody') # 获取 post 参数
37 encry_param = des_encrypt(param.strip("\n"))
38 print(param)
39 print(encry_param)
40 return encry_param
41
42@app.route('/decode',methods=["POST"])
43def decrypt():

Callers

nothing calls this directly

Calls 1

des_encryptFunction · 0.85

Tested by

no test coverage detected