Home | History | Annotate | Download | only in crypto

Lines Matching refs:Digest

4  * interface that a message digest conforms to.
6 public interface Digest
16 * return the size, in bytes, of the digest produced by this message digest.
18 * @return the size, in bytes, of the digest produced by this message digest.
23 * update the message digest with a single byte.
30 * update the message digest with a block of bytes.
39 * close the digest, producing the final digest value. The doFinal
40 * call leaves the digest reset.
42 * @param out the array the digest is to be copied into.
43 * @param outOff the offset into the out array the digest is to start at.
48 * reset the digest back to it's initial state.