Unsupported ciphersuite TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256

半城伤御伤魂 提交于 2019-12-06 22:38:40

TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 is a TLSv1.2 cipher suite. It can not be used with SSLv3 or TLSv1. Also, it might not be even available for the unknown version of Java you are using.

Edit: since it is now known that Java 1.7 is used:

According to the documentation from Oracle no GCM ciphers are available in Java 1.7 but they only got added to Java 1.8. Which explains the message about unsupported cipher.

The issue with this was that the key was generated incorrectly. I had to go on to support with COMODO and get help with the key generation.

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