Methods Summary |
---|
public int | doFinal(byte[] out, int outOff)Compute the final statge of the MAC writing the output to the out
parameter.
doFinal leaves the MAC in the same state it was after the last init.
|
public java.lang.String | getAlgorithmName()Return the name of the algorithm the MAC implements.
|
public int | getMacSize()Return the block size for this cipher (in bytes).
|
public void | init(CipherParameters params)Initialise the MAC.
|
public void | reset()Reset the MAC. At the end of resetting the MAC should be in the
in the same state it was after the last init (if there was one).
|
public void | update(byte in)add a single byte to the mac for processing.
|
public void | update(byte[] in, int inOff, int len)
|