When using KeyFactory kg = KeyFactory.getInstance(ALGORITHM) what are the different algorithms that could be used? I know there is “DSA”, “RSA” but which other are supported?
When using KeyFactory kg = KeyFactory.getInstance(ALGORITHM) what are the different algorithms that could be
Share
You can get the list of supported algorithms for KeyFactory here. You can get a list algorithms supported by other security related classes here
Note: key.getAlgorithm() will return “DH” instead of
“DiffieHellman”.