script-astra/Android/Sdk/sources/android-35/org/bouncycastle/crypto/ExtendedDigest.java

14 lines
316 B
Java
Raw Permalink Normal View History

2025-01-20 15:15:20 +00:00
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();
}