gnu.crypto.key.dss
Class DSSKeyPairRawCodec
public
class
DSSKeyPairRawCodec
extends Object
implements IKeyPairCodec
An object that implements the IKeyPairCodec operations for the
Raw format to use with DSS keypairs.
Version: $Revision: 1.2 $
Method Summary |
PrivateKey | decodePrivateKey(byte[] k) |
PublicKey | decodePublicKey(byte[] k) |
byte[] | encodePrivateKey(PrivateKey key)
Returns the encoded form of the designated DSS (Digital Signature
Standard) private key according to the Raw format supported by
this library.
The Raw format for a DSA private key, in this implementation, is
a byte sequence consisting of the following:
- 4-byte magic consisting of the value of the literal
MAGIC_RAW_DSS_PRIVATE_KEY,
-
- 1-byte version consisting of the constant: 0x01,
- 4-byte count of following bytes representing the DSA parameter
p in internet order,
- n-bytes representation of a BigInteger obtained by invoking
the
toByteArray() method on the DSA parameter
p ,
- 4-byte count of following bytes representing the DSA parameter
q ,
- n-bytes representation of a BigInteger obtained by invoking
the
toByteArray() method on the DSA parameter
q ,
- 4-byte count of following bytes representing the DSA parameter
g ,
- n-bytes representation of a BigInteger obtained by invoking
the
toByteArray() method on the DSA parameter
g ,
- 4-byte count of following bytes representing the DSA parameter
x ,
- n-bytes representation of a BigInteger obtained by invoking
the
toByteArray() method on the DSA parameter
x ,
|
byte[] | encodePublicKey(PublicKey key)
Returns the encoded form of the designated DSS (Digital Signature
Standard) public key according to the Raw format supported by
this library.
The Raw format for a DSA public key, in this implementation, is
a byte sequence consisting of the following:
- 4-byte magic consisting of the value of the literal
MAGIC_RAW_DSS_PUBLIC_KEY,
-
- 1-byte version consisting of the constant: 0x01,
- 4-byte count of following bytes representing the DSA parameter
p in internet order,
- n-bytes representation of a BigInteger obtained by invoking
the
toByteArray() method on the DSA parameter
p ,
- 4-byte count of following bytes representing the DSA parameter
q ,
- n-bytes representation of a BigInteger obtained by invoking
the
toByteArray() method on the DSA parameter
q ,
- 4-byte count of following bytes representing the DSA parameter
g ,
- n-bytes representation of a BigInteger obtained by invoking
the
toByteArray() method on the DSA parameter
g ,
- 4-byte count of following bytes representing the DSA parameter
y ,
- n-bytes representation of a BigInteger obtained by invoking
the
toByteArray() method on the DSA parameter
y ,
|
int | getFormatID() |
public PrivateKey decodePrivateKey(byte[] k)
public PublicKey decodePublicKey(byte[] k)
public byte[] encodePrivateKey(PrivateKey key)
Returns the encoded form of the designated DSS (Digital Signature
Standard) private key according to the Raw format supported by
this library.
The Raw format for a DSA private key, in this implementation, is
a byte sequence consisting of the following:
- 4-byte magic consisting of the value of the literal
MAGIC_RAW_DSS_PRIVATE_KEY,
-
- 1-byte version consisting of the constant: 0x01,
- 4-byte count of following bytes representing the DSA parameter
p
in internet order,
- n-bytes representation of a BigInteger obtained by invoking
the
toByteArray()
method on the DSA parameter
p
,
- 4-byte count of following bytes representing the DSA parameter
q
,
- n-bytes representation of a BigInteger obtained by invoking
the
toByteArray()
method on the DSA parameter
q
,
- 4-byte count of following bytes representing the DSA parameter
g
,
- n-bytes representation of a BigInteger obtained by invoking
the
toByteArray()
method on the DSA parameter
g
,
- 4-byte count of following bytes representing the DSA parameter
x
,
- n-bytes representation of a BigInteger obtained by invoking
the
toByteArray()
method on the DSA parameter
x
,
Parameters: key the key to encode.
Returns: the Raw format encoding of the designated key.
Throws: IllegalArgumentException if the designated key is not a DSS
(Digital Signature Standard) one.
public byte[] encodePublicKey(PublicKey key)
Returns the encoded form of the designated DSS (Digital Signature
Standard) public key according to the Raw format supported by
this library.
The Raw format for a DSA public key, in this implementation, is
a byte sequence consisting of the following:
- 4-byte magic consisting of the value of the literal
MAGIC_RAW_DSS_PUBLIC_KEY,
-
- 1-byte version consisting of the constant: 0x01,
- 4-byte count of following bytes representing the DSA parameter
p
in internet order,
- n-bytes representation of a BigInteger obtained by invoking
the
toByteArray()
method on the DSA parameter
p
,
- 4-byte count of following bytes representing the DSA parameter
q
,
- n-bytes representation of a BigInteger obtained by invoking
the
toByteArray()
method on the DSA parameter
q
,
- 4-byte count of following bytes representing the DSA parameter
g
,
- n-bytes representation of a BigInteger obtained by invoking
the
toByteArray()
method on the DSA parameter
g
,
- 4-byte count of following bytes representing the DSA parameter
y
,
- n-bytes representation of a BigInteger obtained by invoking
the
toByteArray()
method on the DSA parameter
y
,
Parameters: key the key to encode.
Returns: the Raw format encoding of the designated key.
Throws: IllegalArgumentException if the designated key is not a DSS
(Digital Signature Standard) one.
See Also: MAGIC_RAW_DSS_PUBLIC_KEY
public int getFormatID()