Uses of Interface
com.scurrilous.circe.Hash
-
Packages that use Hash Package Description com.scurrilous.circe Provides interfaces and minimal support classes for providing and consuming various forms of hash functions.com.scurrilous.circe.checksum 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 Hash in com.scurrilous.circe
Subinterfaces of Hash in com.scurrilous.circe Modifier and Type Interface Description interfaceIncrementalIntHashIncremental stateless integer hash function, which has the property that its output is the same as (or easily derivable from) its state.interfaceIncrementalLongHashIncremental stateless long integer hash function, which has the property that its output is the same as (or easily derivable from) its state.interfaceStatefulHashRepresents a stateful hash function, which can accumulate input from multiple method calls and provide output in various forms.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.interfaceStatelessHashBase interface for stateless hash functions that immediately return the hash value corresponding to a given input.interfaceStatelessIntHashInterface implemented by stateless hash functions with an output length of 4 bytes or less.interfaceStatelessLongHashInterface implemented by stateless hash functions with an output length greater than 4 bytes and less than or equal to 8 bytes. -
Uses of Hash in com.scurrilous.circe.checksum
Methods in com.scurrilous.circe.checksum that return Hash Modifier and Type Method Description protected HashCrc32cSse42Provider. get(HashParameters params, java.util.EnumSet<HashSupport> required) -
Uses of Hash in com.scurrilous.circe.crc
Classes in com.scurrilous.circe.crc that implement Hash Modifier and Type Class Description (package private) classAbstractIntCrcBase implementation of int-width CRC functions.(package private) classAbstractLongCrcBase implementation of long-width CRC functions.(package private) classJavaCrc32WrapsCRC32in aStatefulIntHash.(package private) classNormalByteCrcImplements a "normal" MSB-first byte-width CRC function using a lookup table.(package private) classNormalIntCrcImplements a "normal" MSB-first int-width CRC function using a lookup table.(package private) classNormalLongCrcImplements a "normal" MSB-first long-width CRC function using a lookup table.(package private) classReflectedIntCrcImplements a "reflected" LSB-first int-width CRC function using a lookup table.(package private) classReflectedLongCrcImplements a "reflected" LSB-first long-width CRC function using a lookup table.classSse42Crc32CImplementation of CRC-32C using the SSE 4.2 CRC instruction.Methods in com.scurrilous.circe.crc that return Hash Modifier and Type Method Description protected HashStandardCrcProvider. get(CrcParameters params, java.util.EnumSet<HashSupport> required) -
Uses of Hash in com.scurrilous.circe.impl
Classes in com.scurrilous.circe.impl that implement Hash Modifier and Type Class Description classAbstractIncrementalIntHashBase implementation for incremental stateless integer hash functions.classAbstractIncrementalLongHashBase implementation for incremental stateless long integer hash functions.classAbstractStatefulHashBase implementation for stateful hash functions.classAbstractStatelessIntHashBase implementation for stateless (but not incremental) integer hash functions.classAbstractStatelessLongHashBase implementation for stateless (but not incremental) long integer hash functions.(package private) classIncrementalIntStatefulHash(package private) classIncrementalLongStatefulHashclassIntStatefulLongHashPromotes aStatefulIntHashto aStatefulLongHash.classIntStatelessLongHashPromotes aStatelessIntHashto aStatelessLongHash.Methods in com.scurrilous.circe.impl that return Hash Modifier and Type Method Description protected abstract HashAbstractHashProvider. get(P params, java.util.EnumSet<HashSupport> required)Requests a hash function using the given parameters and support flags.HashHashCache. get(HashParameters params, java.util.EnumSet<HashSupport> required, java.util.concurrent.Callable<Hash> loader)Requests a cached hash function with the given parameters and required support flags.protected HashAbstractHashProvider. getCacheable(P params, java.util.EnumSet<HashSupport> required)Called by implementations that support caching of stateless hash functions when a cached instance is desired.Method parameters in com.scurrilous.circe.impl with type arguments of type Hash Modifier and Type Method Description HashHashCache. get(HashParameters params, java.util.EnumSet<HashSupport> required, java.util.concurrent.Callable<Hash> loader)Requests a cached hash function with the given parameters and required support flags.
-