ECC Cryptography
843811Jul 31 2007 — edited Aug 2 2007I am trying to use the ECC cryptography in java 1.5_11 (http://java.sun.com/j2se/1.5.0/docs/guide/security/jce/JCERefGuide.html#ECC-Support )
but when i execute the following code
try
{
Cipher cipher= Cipher.getInstance("ECIES");
}
catch (NoSuchPaddingException ex)
{
ex.printStackTrace();
} catch (NoSuchAlgorithmException ex)
{
ex.printStackTrace();
}
i get
ava.security.NoSuchAlgorithmException: Cannot find any provider supporting ECIES
at javax.crypto.Cipher.getInstance(DashoA12275)
could anyone help me?