Skip to Main Content

Java Security

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

ECC Cryptography

843811Jul 31 2007 — edited Aug 2 2007
I 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?
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Aug 30 2007
Added on Jul 31 2007
17 comments
1,487 views