Download this file

ExtendedDigest.java    14 lines (12 with data), 316 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
package org.bouncycastle.crypto;
public interface ExtendedDigest
extends Digest
{
/**
* Return the size in bytes of the internal buffer the digest applies it's compression
* function to.
*
* @return byte length of the digests internal buffer.
*/
public int getByteLength();
}