Class SkeinEngine
- All Implemented Interfaces:
Memoable
Threefish
tweakable block cipher.
This is the 1.3 version of Skein defined in the Skein hash function submission to the NIST SHA-3 competition in October 2010.
Skein was designed by Niels Ferguson - Stefan Lucks - Bruce Schneier - Doug Whiting - Mihir Bellare - Tadayoshi Kohno - Jon Callas - Jesse Walker.
This implementation is the basis for SkeinDigest
and SkeinMac
, implementing the
parameter based configuration system that allows Skein to be adapted to multiple applications.
Initialising the engine with SkeinParameters
allows standard and arbitrary parameters to
be applied during the Skein hash function.
Implemented:
- 256, 512 and 1024 bit internal states.
- Full 96 bit input length.
- Parameters defined in the Skein specification, and arbitrary other pre and post message parameters.
- Arbitrary output size in 1 byte intervals.
Not implemented:
- Sub-byte length input (bit padding).
- Tree hashing.
- See Also:
-
Nested Class Summary
Nested Classes -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final int
1024 bit block size - Skein 1024static final int
256 bit block size - Skein 256static final int
512 bit block size - Skein 512 -
Constructor Summary
ConstructorsConstructorDescriptionSkeinEngine
(int blockSizeBits, int outputSizeBits) Constructs a Skein engine.SkeinEngine
(SkeinEngine engine) Creates a SkeinEngine as an exact copy of an existing instance. -
Method Summary
Modifier and TypeMethodDescriptioncopy()
Produce a copy of this object with its configuration and in its current state.int
doFinal
(byte[] out, int outOff) int
int
void
init
(SkeinParameters params) Initialises the Skein engine with the provided parameters.void
reset()
Reset the engine to the initial state (with the key and any pre-message parameters , ready to accept message input.void
Restore a copied object state into this object.void
update
(byte in) void
update
(byte[] in, int inOff, int len)
-
Field Details
-
SKEIN_256
public static final int SKEIN_256256 bit block size - Skein 256- See Also:
-
SKEIN_512
public static final int SKEIN_512512 bit block size - Skein 512- See Also:
-
SKEIN_1024
public static final int SKEIN_10241024 bit block size - Skein 1024- See Also:
-
-
Constructor Details
-
SkeinEngine
public SkeinEngine(int blockSizeBits, int outputSizeBits) Constructs a Skein engine.- Parameters:
blockSizeBits
- the internal state size in bits - one ofSKEIN_256
,SKEIN_512
orSKEIN_1024
.outputSizeBits
- the output/digest size to produce in bits, which must be an integral number of bytes.
-
SkeinEngine
Creates a SkeinEngine as an exact copy of an existing instance.
-
-
Method Details
-
copy
Description copied from interface:Memoable
Produce a copy of this object with its configuration and in its current state.The returned object may be used simply to store the state, or may be used as a similar object starting from the copied state.
-
reset
Description copied from interface:Memoable
Restore a copied object state into this object.Implementations of this method should try to avoid or minimise memory allocation to perform the reset.
-
getOutputSize
public int getOutputSize() -
getBlockSize
public int getBlockSize() -
init
Initialises the Skein engine with the provided parameters. SeeSkeinParameters
for details on the parameterisation of the Skein hash function.- Parameters:
params
- the parameters to apply to this engine, ornull
to use no parameters.
-
reset
public void reset()Reset the engine to the initial state (with the key and any pre-message parameters , ready to accept message input. -
update
public void update(byte in) -
update
public void update(byte[] in, int inOff, int len) -
doFinal
public int doFinal(byte[] out, int outOff)
-