Package net.i2p.crypto.elgamal.impl
Class ElGamalPrivateKeyImpl
- java.lang.Object
-
- net.i2p.crypto.elgamal.impl.ElGamalPrivateKeyImpl
-
- All Implemented Interfaces:
Serializable,Key,PrivateKey,DHKey,DHPrivateKey,Destroyable,ElGamalKey,ElGamalPrivateKey
public class ElGamalPrivateKeyImpl extends Object implements ElGamalPrivateKey, DHPrivateKey
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedElGamalPrivateKeyImpl()ElGamalPrivateKeyImpl(BigInteger x, ElGamalParameterSpec elSpec)ElGamalPrivateKeyImpl(PKCS8EncodedKeySpec spec)ElGamalPrivateKeyImpl(DHPrivateKey key)ElGamalPrivateKeyImpl(DHPrivateKeySpec spec)ElGamalPrivateKeyImpl(ElGamalPrivateKey key)ElGamalPrivateKeyImpl(ElGamalPrivateKeySpec spec)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetAlgorithm()byte[]getEncoded()Return a PKCS8 representation of the key.StringgetFormat()return the encoding format we produce in getEncoded().ElGamalParameterSpecgetParameters()DHParameterSpecgetParams()BigIntegergetX()-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface javax.security.auth.Destroyable
destroy, isDestroyed
-
-
-
-
Constructor Detail
-
ElGamalPrivateKeyImpl
protected ElGamalPrivateKeyImpl()
-
ElGamalPrivateKeyImpl
public ElGamalPrivateKeyImpl(ElGamalPrivateKey key)
-
ElGamalPrivateKeyImpl
public ElGamalPrivateKeyImpl(DHPrivateKey key)
-
ElGamalPrivateKeyImpl
public ElGamalPrivateKeyImpl(ElGamalPrivateKeySpec spec)
-
ElGamalPrivateKeyImpl
public ElGamalPrivateKeyImpl(DHPrivateKeySpec spec)
-
ElGamalPrivateKeyImpl
public ElGamalPrivateKeyImpl(BigInteger x, ElGamalParameterSpec elSpec)
-
ElGamalPrivateKeyImpl
public ElGamalPrivateKeyImpl(PKCS8EncodedKeySpec spec)
-
-
Method Detail
-
getAlgorithm
public String getAlgorithm()
- Specified by:
getAlgorithmin interfaceKey
-
getFormat
public String getFormat()
return the encoding format we produce in getEncoded().
-
getEncoded
public byte[] getEncoded()
Return a PKCS8 representation of the key. The sequence returned represents a full PrivateKeyInfo object.- Specified by:
getEncodedin interfaceKey- Returns:
- a PKCS8 representation of the key.
-
getParameters
public ElGamalParameterSpec getParameters()
- Specified by:
getParametersin interfaceElGamalKey
-
getParams
public DHParameterSpec getParams()
-
getX
public BigInteger getX()
- Specified by:
getXin interfaceDHPrivateKey- Specified by:
getXin interfaceElGamalPrivateKey
-
-