Java TLS: How to disable certificate types in handshake

2 hours ago 1
ARTICLE AD BOX

When looking at PCAP traces of Java TLS handshake, I can see details in Server Hello like this:

Certificate types (3 types) Certificate type: ECDSA Sign (64) Certificate type: RSA Sign (1) Certificate type: DSS Sign (2)

I would like to disable DDS sign.

I've already disabled some handshake signature algorithms, according to this post: Java TLS: how to disable certain handshake features

However, I didn't find any related settings in java.security file according to certificate types. Any hints on that?

Read Entire Article