Hi there
With BrowserIndex being the client and ServerIndex being the server, what can I use to encrypt and decrypt data sent between the two?
Thanks.
With BrowserIndex being the client and ServerIndex being the server, what can I use to encrypt and decrypt data sent between the two?
- BrowserIndex sends a JSON string to ServerIndex, this is done with ws.RunFunctionWithResult
- ServerIndex receives this and converts it back a map, processes it and returns a map to _result callback, using ws.RunFunction("XXX_Result"
- BrowserIndex gets payload from _result, saves it in memory and processes it.
Thanks.