Google

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

org.bouncycastle.jce.provider
Class JDKDSAPrivateKey

java.lang.Object
  |
  +--org.bouncycastle.jce.provider.JDKDSAPrivateKey
All Implemented Interfaces:
java.security.interfaces.DSAKey, java.security.interfaces.DSAPrivateKey, java.security.Key, PKCS12BagAttributeCarrier, java.security.PrivateKey, java.io.Serializable

public class JDKDSAPrivateKey
extends java.lang.Object
implements java.security.interfaces.DSAPrivateKey, PKCS12BagAttributeCarrier

See Also:
Serialized Form

Fields inherited from interface java.security.interfaces.DSAPrivateKey
serialVersionUID
 
Constructor Summary
protected JDKDSAPrivateKey()
           
 
Method Summary
 java.lang.String getAlgorithm()
           
 DEREncodable getBagAttribute(DERObjectIdentifier oid)
           
 java.util.Enumeration getBagAttributeKeys()
           
 byte[] getEncoded()
          Return a PKCS8 representation of the key.
 java.lang.String getFormat()
          return the encoding format we produce in getEncoded().
 java.security.interfaces.DSAParams getParams()
           
 java.math.BigInteger getX()
           
 void setBagAttribute(DERObjectIdentifier oid, DEREncodable attribute)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

JDKDSAPrivateKey

protected JDKDSAPrivateKey()
Method Detail

getAlgorithm

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

getFormat

public java.lang.String getFormat()
return the encoding format we produce in getEncoded().
Specified by:
getFormat in interface java.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:
getEncoded in interface java.security.Key
Returns:
a PKCS8 representation of the key.

getParams

public java.security.interfaces.DSAParams getParams()
Specified by:
getParams in interface java.security.interfaces.DSAKey

getX

public java.math.BigInteger getX()
Specified by:
getX in interface java.security.interfaces.DSAPrivateKey

setBagAttribute

public void setBagAttribute(DERObjectIdentifier oid,
                            DEREncodable attribute)
Specified by:
setBagAttribute in interface PKCS12BagAttributeCarrier

getBagAttribute

public DEREncodable getBagAttribute(DERObjectIdentifier oid)
Specified by:
getBagAttribute in interface PKCS12BagAttributeCarrier

getBagAttributeKeys

public java.util.Enumeration getBagAttributeKeys()
Specified by:
getBagAttributeKeys in interface PKCS12BagAttributeCarrier

Bouncy Castle Cryptography 1.11