English 中文(简体)
java的脂肪曲解加密
原标题:Elliptic curve cryptography in java
  • 时间:2010-09-01 16:15:39
  •  标签:
  • java

i want to implement ECC in java.whether jdk1.7 alone to implement it or need anyother open source like bouncy castle or JCE provider. if bouncy castle is used how to install the package for it.i dont know exact procedure. pls say the procedure to implement it.pls kindly clarify my doubt.

问题回答

但是,JDK 1.7 提供了原住民。

JavaSE 7号新闻稿增加了以下特点:

Elliptic Curve Cryptography (ECC) A new native provider has been added to the Java SE 7 release that provides several ECC-based algorithms (ECDSA/ECDH). See Sun PKCS#11 Provider s Supported Algorithms in Java PKCS#11 Reference Guide for more information.

rel=“nofollow”http://docs.oracle.com/javase/7/docs/technotes/guides/security/enhancements-7.html

http://www.bouncy城堡.org/wiki/display/JA1/Using+Elliptic+Curve” rel=“nofollow noreferer” Bouncy Cast - Using Elliptic Curves, 有一些实例说明如何使用。

即便在 Java6,我也不得不通过标准JCA APC开展工作。 我必须提及Sun s sun.security.ec.NamedCurve类别,以便正确确定欧共体的参数,我还必须安装BouncyCastle作为供应商。

从我的经验来看,我不认为可以执行安全供应商可以携带的欧共体法典。 虽然小,但你直接依靠BouncyCastle AP。





相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签