java.security.interfaces
Interface DSAPrivateKey

All Superinterfaces:
DSAKey sample code for java.security.interfaces.DSAKey definition code for java.security.interfaces.DSAKey , Key sample code for java.security.Key definition code for java.security.Key , PrivateKey sample code for java.security.PrivateKey definition code for java.security.PrivateKey , Serializable sample code for java.io.Serializable definition code for java.io.Serializable

public interface DSAPrivateKey
extends DSAKey sample code for java.security.interfaces.DSAKey definition code for java.security.interfaces.DSAKey , PrivateKey sample code for java.security.PrivateKey definition code for java.security.PrivateKey

The standard interface to a DSA private key. DSA (Digital Signature Algorithm) is defined in NIST's FIPS-186.

See Also:
Key sample code for java.security.Key definition code for java.security.Key , Signature sample code for java.security.Signature definition code for java.security.Signature , DSAKey sample code for java.security.interfaces.DSAKey definition code for java.security.interfaces.DSAKey , DSAPublicKey sample code for java.security.interfaces.DSAPublicKey definition code for java.security.interfaces.DSAPublicKey

Field Summary
static long serialVersionUID sample code for java.security.interfaces.DSAPrivateKey.serialVersionUID definition code for java.security.interfaces.DSAPrivateKey.serialVersionUID
          The class fingerprint that is set to indicate serialization compatibility with a previous version of the class.
 
Method Summary
 BigInteger sample code for java.math.BigInteger definition code for java.math.BigInteger getX sample code for java.security.interfaces.DSAPrivateKey.getX() definition code for java.security.interfaces.DSAPrivateKey.getX() ()
          Returns the value of the private key, x.
 
Methods inherited from interface java.security.interfaces.DSAKey sample code for java.security.interfaces.DSAKey definition code for java.security.interfaces.DSAKey
getParams sample code for java.security.interfaces.DSAKey.getParams() definition code for java.security.interfaces.DSAKey.getParams()
 
Methods inherited from interface java.security.Key sample code for java.security.Key definition code for java.security.Key
getAlgorithm sample code for java.security.Key.getAlgorithm() definition code for java.security.Key.getAlgorithm() , getEncoded sample code for java.security.Key.getEncoded() definition code for java.security.Key.getEncoded() , getFormat sample code for java.security.Key.getFormat() definition code for java.security.Key.getFormat()
 

Field Detail

serialVersionUID sample code for java.security.interfaces.DSAPrivateKey.serialVersionUID

static final long serialVersionUID
The class fingerprint that is set to indicate serialization compatibility with a previous version of the class.

See Also:
Constant Field Values
Method Detail

getX sample code for java.security.interfaces.DSAPrivateKey.getX() definition code for java.security.interfaces.DSAPrivateKey.getX()

BigInteger sample code for java.math.BigInteger definition code for java.math.BigInteger  getX()
Returns the value of the private key, x.

Returns:
the value of the private key, x.