Server secure connection handshake
I would like to know if there are any security concerns regarding the way I want to create a secure client-server connection.
NOTE: I know the most obvious answer to these type of questions is to just use SSL/TLS, but I would appreciate an answer to my specific case.
My connection protocol is as follows (following communication is un-encrypted plain text):
All further communication is encrypted with AES and verified with HMAC.
A man in the middle could easily send their own public key to the client and receive the original public key from the server.
It could then eavesdrop the conversation in both directions.
链接地址: http://www.djcxy.com/p/21808.html上一篇: 此SSL方案是否有效?
下一篇: 服务器安全连接握手