Which EC ciphers should be selected to avoid - secp160k1 curve as its weaker one.
I am using jdk 1.8 with SunEC as JCA provider
Which EC ciphers should be selected to avoid - secp160k1 curve as its weaker one.
I am using jdk 1.8 with SunEC as JCA provider
In some contexts, algorithms and key sizes can be restricted using the java.security
file in the JRE, but there isn't a way to restrict EC curves using that method.
However, by specifying the curves you permit when you generate your keys, you are effectively restricting key agreement to those curves. If a particular curve is not permitted, you shouldn't have a key pair to support it.