public class EcdhStandardKeyAgreement extends EcdhKeyAgreement
This implementation is based on the 'Standard Diffie-Hellman Primitive' defined in ANSI X9.63-2001 Section 5.4.1 (for further details, refer to ANSI X9.63).
An instance of this algorithm can be obtained using the Java Cryptography
Architecture (JCA), by requesting an 'ECDH' key agreement algorithm from the
Entrust cryptographic
service provider. This can be done using the following call:
KeyAgreement.getInstance("ECDH", "Entrust");This class SHOULD NOT be used directly; it should only be used through the JCA/JCE.
EcdhKeyAgreement| Constructor and Description |
|---|
EcdhStandardKeyAgreement()
The constructor; creates a new instance of the ECDH key agreement
algorithm.
|
engineDoPhase, engineGenerateSecret, engineGenerateSecret, engineGenerateSecret, engineInit, engineInitpublic EcdhStandardKeyAgreement()
Applications should never use this constructor, instead the key agreement
algorithm should be requested from the appropriate JCA/JCE cryptographic
service provider as follows:
KeyAgreement.getInstance("ECDH", "Entrust").