|
[Expand]
Inherited Methods |
From class
net.schmizz.sshj.signature.AbstractSignature
|
byte[]
|
extractSig(byte[] sig)
|
|
void
|
init(PublicKey publicKey, PrivateKey privateKey)
Initialize this signature with the given public key and private key.
|
|
void
|
update(byte[] foo, int off, int len)
Update the computed signature with the given data.
|
|
void
|
update(byte[] foo)
|
|
From class
java.lang.Object
|
Object
|
clone()
|
|
boolean
|
equals(Object arg0)
|
|
void
|
finalize()
|
|
final
Class<?>
|
getClass()
|
|
int
|
hashCode()
|
|
final
void
|
notify()
|
|
final
void
|
notifyAll()
|
|
String
|
toString()
|
|
final
void
|
wait()
|
|
final
void
|
wait(long arg0, int arg1)
|
|
final
void
|
wait(long arg0)
|
|
From interface
net.schmizz.sshj.signature.Signature
|
abstract
void
|
init(PublicKey pubkey, PrivateKey prvkey)
Initialize this signature with the given public key and private key.
|
|
abstract
byte[]
|
sign()
Compute the signature.
|
|
abstract
void
|
update(byte[] H, int off, int len)
Update the computed signature with the given data.
|
|
abstract
void
|
update(byte[] H)
|
|
abstract
boolean
|
verify(byte[] sig)
Verify against the given signature.
|
|