Bouncy Castle Cryptography 1.11 API Specification: Class JCEDHPublicKey
Bouncy Castle Cryptography 1.11

org.bouncycastle.jce.provider
Class JCEDHPublicKey

java.lang.Object
  |
  +--org.bouncycastle.jce.provider.JCEDHPublicKey
All Implemented Interfaces:
DHKey, DHPublicKey, java.security.Key, java.security.PublicKey, java.io.Serializable

public class JCEDHPublicKey
extends java.lang.Object
implements DHPublicKey

See Also:
Serialized Form

Fields inherited from interface java.security.PublicKey
serialVersionUID
 
Method Summary
 java.lang.String getAlgorithm()
           
 byte[] getEncoded()
           
 java.lang.String getFormat()
           
 DHParameterSpec getParams()
          Returns the key parameters.
 java.math.BigInteger getY()
          Returns the public value, y.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

getAlgorithm

public java.lang.String getAlgorithm()
Specified by:
getAlgorithm in interface java.security.Key

getFormat

public java.lang.String getFormat()
Specified by:
getFormat in interface java.security.Key

getEncoded

public byte[] getEncoded()
Specified by:
getEncoded in interface java.security.Key

getParams

public DHParameterSpec getParams()
Description copied from interface: DHKey
Returns the key parameters.
Specified by:
getParams in interface DHKey
Following copied from interface: javax.crypto.interfaces.DHKey
Returns:
the key parameters

getY

public java.math.BigInteger getY()
Description copied from interface: DHPublicKey
Returns the public value, y.
Specified by:
getY in interface DHPublicKey
Following copied from interface: javax.crypto.interfaces.DHPublicKey
Returns:
the public value, y

Bouncy Castle Cryptography 1.11