Uses of Interface
com.scurrilous.circe.StatefulHash
-
Packages that use StatefulHash Package Description com.scurrilous.circe Provides interfaces and minimal support classes for providing and consuming various forms of hash functions.com.scurrilous.circe.crc Provides various implementations of cyclic redundancy check (CRC) error-detecting codes.com.scurrilous.circe.impl Provides support for implementing new hash providers in the form of abstract base classes and utility classes. -
-
Uses of StatefulHash in com.scurrilous.circe
Subinterfaces of StatefulHash in com.scurrilous.circe Modifier and Type Interface Description interfaceStatefulIntHashInterface implemented by stateful hash functions with an output length of 4 bytes or less.interfaceStatefulLongHashInterface implemented by stateless hash functions with an output length greater than 4 bytes and less than or equal to 8 bytes.Methods in com.scurrilous.circe that return StatefulHash Modifier and Type Method Description StatefulHashStatefulHash. createNew()Returns a new instance of this stateful hash function reset to the initial state.static StatefulHashHashes. createStateful(HashParameters params)Creates a stateful hash function using the given parameters.StatefulHashHashProvider. createStateful(HashParameters params)Creates a stateful hash function using the given parameters.StatefulHashStatelessHash. createStateful()Returns a new instance of stateful version of this hash function.static StatefulHashCommonHashes. md5()Returns a hash function implementing the MD5 algorithm (128 bits).static StatefulHashCommonHashes. murmur3_128()Returns a hash function implementing the MurmurHash3 algorithm, 128-bit x64 variant, with a seed of 0.static StatefulHashCommonHashes. murmur3_128(int seed)Returns a hash function implementing the MurmurHash3 algorithm, 128-bit x64 variant, with the given seed value.static StatefulHashCommonHashes. sha1()Returns a hash function implementing the SHA-1 algorithm (160 bits).static StatefulHashCommonHashes. sha256()Returns a hash function implementing the SHA-256 algorithm (256 bits).static StatefulHashCommonHashes. sha384()Returns a hash function implementing the SHA-384 algorithm (384 bits).static StatefulHashCommonHashes. sha512()Returns a hash function implementing the SHA-512 algorithm (512 bits). -
Uses of StatefulHash in com.scurrilous.circe.crc
Classes in com.scurrilous.circe.crc that implement StatefulHash Modifier and Type Class Description (package private) classJavaCrc32WrapsCRC32in aStatefulIntHash.Methods in com.scurrilous.circe.crc that return StatefulHash Modifier and Type Method Description StatefulHashJavaCrc32. createNew() -
Uses of StatefulHash in com.scurrilous.circe.impl
Classes in com.scurrilous.circe.impl that implement StatefulHash Modifier and Type Class Description classAbstractStatefulHashBase implementation for stateful hash functions.(package private) classIncrementalIntStatefulHash(package private) classIncrementalLongStatefulHashclassIntStatefulLongHashPromotes aStatefulIntHashto aStatefulLongHash.Methods in com.scurrilous.circe.impl that return StatefulHash Modifier and Type Method Description StatefulHashIncrementalIntStatefulHash. createNew()StatefulHashIncrementalLongStatefulHash. createNew()StatefulHashIntStatefulLongHash. createNew()StatefulHashAbstractHashProvider. createStateful(HashParameters params)
-