01: package org.bouncycastle.crypto;
02:
03: public interface ExtendedDigest extends Digest {
04: /**
05: * Return the size in bytes of the internal buffer the digest applies it's compression
06: * function to.
07: *
08: * @return byte length of the digests internal buffer.
09: */
10: public int getByteLength();
11: }
|