Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ExtendedDigest.java « crypto « bouncycastle « org « java « main « src « core - gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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();
}