You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello!
Is it possible to send data from the input field to the server, having previously processed it on the client?
It's going like this now: {"event":"from_submit","task_id":"login-171252656","data":{"oper_id":"406","pwd":"secret 406"}}
Can I process the data from the field on the JavaScript side with a certain algorithm?
For example MD5(secret 406) = 9acccec70230acda8431f332c33d3ad
I would send it over the network like this: {"event":"from_submit","task_id":"login-171252656","data":{"oper_id":"406","pwd":"9acccec70230acda8431f332c33d3ad"}}
The text was updated successfully, but these errors were encountered:
PyWebIO doesn't provide this feature and I has no plans to support it as well. I suggest you use HTTPS to protect the browser-server communication and encrypt the sensitive data in server.
Hello!
Is it possible to send data from the input field to the server, having previously processed it on the client?
It's going like this now: {"event":"from_submit","task_id":"login-171252656","data":{"oper_id":"406","pwd":"secret 406"}}
Can I process the data from the field on the JavaScript side with a certain algorithm?
For example MD5(secret 406) = 9acccec70230acda8431f332c33d3ad
I would send it over the network like this: {"event":"from_submit","task_id":"login-171252656","data":{"oper_id":"406","pwd":"9acccec70230acda8431f332c33d3ad"}}
The text was updated successfully, but these errors were encountered: