Security protocol used in hybrid app

0
Hello, I had a question about the security protocol that is used to transfer data to and from the hybrid app. I believe it is the same used in our Mendix application. Can anyone let me know if it is SSL or another one that is used. Thank you.
asked
1 answers
2

The hybrid wrapper communicates in the same way as your browser with the server. The connection is secured with TLS 1.2 and is encrypted and authenticated using AES_128_GCM and uses ECDHE_RSA as the key exchange mechanism.

(At least that's what my browser is currently doing, there's some SSL negotiation going on so your own connection might be encrypted and authenticated using slightly a slightly different key exchange mechanism)

answered