Digest.java revision 48ded2421114c4c87ef3f8005c9f793a5d077cbd
1/*
2 * Copyright (c) 2006-2011 Christian Plattner. All rights reserved.
3 * Please refer to the LICENSE.txt for licensing details.
4 */
5package ch.ethz.ssh2.crypto.digest;
6
7/**
8 * Digest.
9 *
10 * @author Christian Plattner
11 * @version 2.50, 03/15/10
12 */
13public interface Digest
14{
15	public int getDigestLength();
16
17	public void update(byte b);
18
19	public void update(byte[] b);
20
21	public void update(byte b[], int off, int len);
22
23	public void reset();
24
25	public void digest(byte[] out);
26
27	public void digest(byte[] out, int off);
28}
29