Methods Summary |
---|
public byte[] | generateSignature()generate a signature for the message we've been loaded with using
the key we were initialised with.
|
public void | init(boolean forSigning, CipherParameters param)Initialise the signer for signing or verification.
|
public void | reset()reset the internal state
|
public void | update(byte b)update the internal digest with the byte b
|
public void | update(byte[] in, int off, int len)update the internal digest with the byte array in
|
public boolean | verifySignature(byte[] signature)return true if the internal state represents the signature described
in the passed in array.
|