blob: c5e9e8b0c5e21f6046626ecab53463e9f0a1be9f [file] [log] [blame]
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();
}