|
For the latest news and information visit The GNU Crypto project |
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object gnu.crypto.jce.spec.TMMHParameterSpec
This class represents the algorithm parameters for the Truncated
Multi-Modular Hash function for use with JCE-derived instances of
TMMH16
.
This class is little more than a container for the key stream, tag length, and prefix parameters for the TMMH algorithm.
Field Summary | |
protected IRandom |
keystream
The keystream. |
protected byte[] |
prefix
The prefix. |
protected java.lang.Integer |
tagLength
The tag length. |
Constructor Summary | |
TMMHParameterSpec(IRandom keystream,
java.lang.Integer tagLength)
Create a new parameter specification with no prefix. |
|
TMMHParameterSpec(IRandom keystream,
java.lang.Integer tagLength,
byte[] prefix)
Create a new parameter specification. |
Method Summary | |
IRandom |
getKeystream()
Return the key stream this specification was initialized with. |
byte[] |
getPrefix()
Return the prefix, or null if no prefix was
specified. |
java.lang.Integer |
getTagLength()
Return the tag length this specification was initialized with. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
protected IRandom keystream
protected java.lang.Integer tagLength
protected byte[] prefix
Constructor Detail |
public TMMHParameterSpec(IRandom keystream, java.lang.Integer tagLength, byte[] prefix)
keystream
- The (PRNG) key stream.tagLength
- The tag length.prefix
- The prefix.public TMMHParameterSpec(IRandom keystream, java.lang.Integer tagLength)
keystream
- The (PRNG) key stream.tagLength
- The tag length.Method Detail |
public IRandom getKeystream()
public java.lang.Integer getTagLength()
public byte[] getPrefix()
null
if no prefix was
specified.
|
For the latest news and information visit The GNU Crypto project |
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |