2011-12-10 41 views

回答

7

您可以獲取KeyFactory支持的算法列表here。您可以獲得其他安全相關類支持的列表算法here

  • DiffieHellman:Diffie-Hellman密鑰協議算法的密鑰。 注意:key.getAlgorithm()將返回「DH」而不是 「DiffieHellman」。
  • DSA:數字簽名算法的密鑰。
  • RSA:RSA算法密鑰(簽名/密碼)。
  • EC
+0

事實上,正確的參考是[這裏](http://docs.oracle.com/javase/6/docs/technotes/guides/security/SunProviders.html)。 EC在Java 6的任何Sun/Oracle提供程序中不受支持.EC由第三方提供程序支持,例如Bouncycastle提供程序。 –

相關問題