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 |
getEncodingAlgorithm()
The algorithm name used in the encoding of the public key
|
String |
getFingerprint()
Return an SSH fingerprint of the public key
|
BigInteger |
getG() |
DSAPublicKey |
getJCEPublicKey()
Get the JCE component of this key.
|
BigInteger |
getP() |
int |
getPriority() |
BigInteger |
getQ() |
SecurityLevel |
getSecurityLevel() |
String |
getSigningAlgorithm()
The algorithm name expected to be encoded in SSH signatures
|
BigInteger |
getY() |
int |
hashCode() |
void |
init(byte[] blob,
int start,
int len)
Initialize the public key from a blob of binary data.
|
String |
test()
Test the JCE for algorithm availability.
|
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 DSAPublicKey getJCEPublicKey()
SshPublicKey
getJCEPublicKey
in interface SshDsaPublicKey
getJCEPublicKey
in interface SshPublicKey
public SecurityLevel getSecurityLevel()
getSecurityLevel
in interface SecureComponent
public int getPriority()
getPriority
in interface SecureComponent
public String getAlgorithm()
getAlgorithm
in interface SshPublicKey
getAlgorithm
in interface SecureComponent
public String getEncodingAlgorithm()
SshPublicKey
getEncodingAlgorithm
in interface SshPublicKey
public int getBitLength()
SshPublicKey
getBitLength
in interface SshPublicKey
public byte[] getEncoded() throws SshException
getEncoded
in interface SshPublicKey
SshException
public String getFingerprint() throws SshException
SshPublicKey
getFingerprint
in interface SshPublicKey
SshException
public void init(byte[] blob, int start, int len) throws SshException
init
in interface SshPublicKey
blob
- byte[]start
- intlen
- intSshException
public boolean verifySignature(byte[] signature, byte[] data) throws SshException
verifySignature
in interface SshPublicKey
signature
- byte[]data
- byte[]true
if the signature was produced by the
corresponding private key that owns this public key, otherwise
false
.SshException
public BigInteger getG()
getG
in interface SshDsaPublicKey
public BigInteger getP()
getP
in interface SshDsaPublicKey
public BigInteger getQ()
getQ
in interface SshDsaPublicKey
public BigInteger getY()
getY
in interface SshDsaPublicKey
public String test()
SshPublicKey
test
in interface SshPublicKey
public String getSigningAlgorithm()
SshPublicKey
getSigningAlgorithm
in interface SshPublicKey
Copyright © 2024. All rights reserved.