Interface Digest
public interface Digest
Interface used to compute digests, based on algorithms such as MD5 or SHA1.
-
Method Details
-
digest
byte[] digest() -
getBlockSize
int getBlockSize() -
init
void init() -
update
void update(byte[] foo) -
update
void update(byte[] foo, int start, int len)
-