summaryrefslogtreecommitdiffstats
path: root/bcprov/src/main/java/org/bouncycastle/crypto/ExtendedDigest.java
blob: c5e9e8b0c5e21f6046626ecab53463e9f0a1be9f (plain)
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();
}