Is there a way to sign http request in Volley?
As far as I understand SSL connection.
- client opens connection
- server responds with cert that contains public key
- client stores server's public key
- client creates request and signs it with server's public key
- server verifies request using own private key
If server sends the response, client verifies response with server's public key?
How does ssl pinning fits in this process?