Package org.apache.sshd.common.digest
Interface Digest
-
- All Superinterfaces:
AlgorithmNameProvider
,Comparable<Digest>
,DigestInformation
- All Known Implementing Classes:
BaseDigest
public interface Digest extends DigestInformation, Comparable<Digest>
Interface used to compute digests, based on algorithms such as MD5 or SHA1. The digest implementation are compared first by the algorithm name (case insensitive and second according to the block size- Author:
- Apache MINA SSHD Project
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description byte[]
digest()
void
init()
void
update(byte[] data)
void
update(byte[] data, int start, int len)
-
Methods inherited from interface org.apache.sshd.common.AlgorithmNameProvider
getAlgorithm
-
Methods inherited from interface java.lang.Comparable
compareTo
-
Methods inherited from interface org.apache.sshd.common.digest.DigestInformation
getBlockSize
-
-