aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/core/src/main/java/org/spongycastle/crypto/ExtendedDigest.java
blob: 7cc339f27f10f7d9b731b77f7038829eed488ec9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package org.spongycastle.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();
}