Class BCDHPrivateKey
- java.lang.Object
-
- org.bouncycastle.jcajce.provider.asymmetric.dh.BCDHPrivateKey
-
- 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 BCDHPrivateKey extends java.lang.Object implements javax.crypto.interfaces.DHPrivateKey, PKCS12BagAttributeCarrier
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedBCDHPrivateKey()BCDHPrivateKey(PrivateKeyInfo info)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object o)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()inthashCode()voidsetBagAttribute(ASN1ObjectIdentifier oid, ASN1Encodable attribute)java.lang.StringtoString()
-
-
-
Constructor Detail
-
BCDHPrivateKey
protected BCDHPrivateKey()
-
BCDHPrivateKey
public BCDHPrivateKey(PrivateKeyInfo info) throws java.io.IOException
- Throws:
java.io.IOException
-
-
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.
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
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
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
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
-
-