public class Ssh2DsaPublicKey extends Object implements SshDsaPublicKey
| Modifier and Type | Field and Description |
|---|---|
protected DSAPublicKey |
pubkey |
| Constructor and Description |
|---|
Ssh2DsaPublicKey() |
Ssh2DsaPublicKey(BigInteger p,
BigInteger q,
BigInteger g,
BigInteger y) |
Ssh2DsaPublicKey(DSAPublicKey pub) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(Object obj) |
String |
getAlgorithm()
Get the algorithm name for the public key.
|
int |
getBitLength()
Get the bit length of the public key
|
byte[] |
getEncoded()
Encode the public key into a blob of binary data, the encoded result will
be passed into init to recreate the key.
|
String |
getFingerprint()
Return an SSH fingerprint of the public key
|
BigInteger |
getG() |
BigInteger |
getP() |
BigInteger |
getQ() |
BigInteger |
getY() |
int |
hashCode() |
void |
init(byte[] blob,
int start,
int len)
Initialize the public key from a blob of binary data.
|
boolean |
verifySignature(byte[] signature,
byte[] data)
Verify the signature.
|
protected DSAPublicKey pubkey
public Ssh2DsaPublicKey()
public Ssh2DsaPublicKey(DSAPublicKey pub)
public Ssh2DsaPublicKey(BigInteger p, BigInteger q, BigInteger g, BigInteger y) throws NoSuchAlgorithmException, InvalidKeySpecException
public String getAlgorithm()
getAlgorithm in interface SshPublicKeypublic int getBitLength()
SshPublicKeygetBitLength in interface SshPublicKeypublic byte[] getEncoded()
throws SshException
getEncoded in interface SshPublicKeySshExceptionpublic String getFingerprint() throws SshException
SshPublicKeygetFingerprint in interface SshPublicKeySshExceptionpublic void init(byte[] blob,
int start,
int len)
throws SshException
init in interface SshPublicKeyblob - byte[]start - intlen - intSshExceptionpublic boolean verifySignature(byte[] signature,
byte[] data)
throws SshException
verifySignature in interface SshPublicKeysignature - byte[]data - byte[]true if the signature was produced by the
corresponding private key that owns this public key, otherwise
false.SshExceptionpublic BigInteger getG()
getG in interface SshDsaPublicKeypublic BigInteger getP()
getP in interface SshDsaPublicKeypublic BigInteger getQ()
getQ in interface SshDsaPublicKeypublic BigInteger getY()
getY in interface SshDsaPublicKeyCopyright © 2014. All rights reserved.