Bouncy Castle Cryptography Library 1.85

org.bouncycastle.jcajce.provider.asymmetric.cmce
Class BCCMCEPublicKey

java.lang.Object
  extended byorg.bouncycastle.jcajce.provider.asymmetric.cmce.BCCMCEPublicKey
All Implemented Interfaces:
CMCEKey, CMCEPublicKey, java.security.Key, java.security.PublicKey, java.io.Serializable

public class BCCMCEPublicKey
extends java.lang.Object
implements CMCEPublicKey

See Also:
Serialized Form

Constructor Summary
BCCMCEPublicKey(CMCEPublicKeyParameters params)
           
BCCMCEPublicKey(SubjectPublicKeyInfo keyInfo)
           
 
Method Summary
 boolean equals(java.lang.Object o)
           
 java.lang.String getAlgorithm()
           
 byte[] getEncoded()
           
 java.lang.String getFormat()
           
 CMCEParameterSpec getParameterSpec()
          Return the parameters for this key.
 byte[] getPublicData()
          Return the raw encoded data representing the public key.
 int hashCode()
           
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

BCCMCEPublicKey

public BCCMCEPublicKey(CMCEPublicKeyParameters params)

BCCMCEPublicKey

public BCCMCEPublicKey(SubjectPublicKeyInfo keyInfo)
                throws java.io.IOException
Method Detail

equals

public boolean equals(java.lang.Object o)

hashCode

public int hashCode()

getAlgorithm

public final java.lang.String getAlgorithm()
Specified by:
getAlgorithm in interface java.security.Key
Returns:
name of the algorithm - "CMCE[]" followed by the parameter type.

getPublicData

public byte[] getPublicData()
Description copied from interface: CMCEPublicKey
Return the raw encoded data representing the public key.

Specified by:
getPublicData in interface CMCEPublicKey
Returns:
the raw public key data.

getEncoded

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

getFormat

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

getParameterSpec

public CMCEParameterSpec getParameterSpec()
Description copied from interface: CMCEKey
Return the parameters for this key.

Specified by:
getParameterSpec in interface CMCEKey
Returns:
a CMCEParameterSpec

toString

public java.lang.String toString()

Bouncy Castle Cryptography Library 1.85