Difference between -keyalg RSA and CipherSuite RSA

末鹿安然 提交于 2019-12-11 08:39:10

问题


I am trying to understand SSL more in depth but I was confused yesterday when I saw that you could specify -keyalg RSA with keytool.

What is the difference between -keyalg RSA in keytool and a cipher suite which specifies RSA e.g. ECDHE_RSA_WITH_AES_128_CBC_SHA256.

Thanks.


回答1:


'keyalg' specifies the algorithm for a private/public key pair, used in association with X.509 certificates for authentication purposes including the authentication phase of SSL.

Cipher suites specify symmetric keys, message digest algorithms, and authentication methods, for use in SSL sessions.



来源:https://stackoverflow.com/questions/16979338/difference-between-keyalg-rsa-and-ciphersuite-rsa

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!