mirror of
https://github.com/github/codeql.git
synced 2025-12-18 09:43:15 +01:00
12 lines
276 B
Java
12 lines
276 B
Java
import java.security.NoSuchAlgorithmException;
|
|
|
|
public interface HASH {
|
|
void init() throws NoSuchAlgorithmException;
|
|
|
|
int getBlockSize();
|
|
|
|
void update(byte[] foo, int start, int len) throws NoSuchAlgorithmException;
|
|
|
|
byte[] digest() throws NoSuchAlgorithmException;
|
|
}
|