Package org.bouncycastle.jce.provider
Class JCEDHPrivateKey
- java.lang.Object
-
- org.bouncycastle.jce.provider.JCEDHPrivateKey
-
- All Implemented Interfaces:
java.io.Serializable,java.security.Key,java.security.PrivateKey,javax.crypto.interfaces.DHKey,javax.crypto.interfaces.DHPrivateKey,javax.security.auth.Destroyable,PKCS12BagAttributeCarrier
public class JCEDHPrivateKey extends java.lang.Object implements javax.crypto.interfaces.DHPrivateKey, PKCS12BagAttributeCarrier
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedJCEDHPrivateKey()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetAlgorithm()ASN1EncodablegetBagAttribute(ASN1ObjectIdentifier oid)java.util.EnumerationgetBagAttributeKeys()byte[]getEncoded()Return a PKCS8 representation of the key.java.lang.StringgetFormat()return the encoding format we produce in getEncoded().javax.crypto.spec.DHParameterSpecgetParams()java.math.BigIntegergetX()voidsetBagAttribute(ASN1ObjectIdentifier oid, ASN1Encodable attribute)
-
-
-
Method Detail
-
getAlgorithm
public java.lang.String getAlgorithm()
- Specified by:
getAlgorithmin interfacejava.security.Key
-
getFormat
public java.lang.String getFormat()
return the encoding format we produce in getEncoded().- Specified by:
getFormatin interfacejava.security.Key- Returns:
- the string "PKCS#8"
-
getEncoded
public byte[] getEncoded()
Return a PKCS8 representation of the key. The sequence returned represents a full PrivateKeyInfo object.- Specified by:
getEncodedin interfacejava.security.Key- Returns:
- a PKCS8 representation of the key.
-
getParams
public javax.crypto.spec.DHParameterSpec getParams()
- Specified by:
getParamsin interfacejavax.crypto.interfaces.DHKey
-
getX
public java.math.BigInteger getX()
- Specified by:
getXin interfacejavax.crypto.interfaces.DHPrivateKey
-
setBagAttribute
public void setBagAttribute(ASN1ObjectIdentifier oid, ASN1Encodable attribute)
- Specified by:
setBagAttributein interfacePKCS12BagAttributeCarrier
-
getBagAttribute
public ASN1Encodable getBagAttribute(ASN1ObjectIdentifier oid)
- Specified by:
getBagAttributein interfacePKCS12BagAttributeCarrier
-
getBagAttributeKeys
public java.util.Enumeration getBagAttributeKeys()
- Specified by:
getBagAttributeKeysin interfacePKCS12BagAttributeCarrier
-
-