gnu.crypto.hash

Class Tiger

public class Tiger extends BaseHash

The Tiger message digest. Tiger was designed by Ross Anderson and Eli Biham, with the goal of producing a secure, fast hash function that performs especially well on next-generation 64-bit architectures, but is still efficient on 32- and 16-bit architectures.

Tiger processes data in 512-bit blocks and produces a 192-bit digest.

References:

  1. Tiger: A Fast New Hash Function, Ross Anderson and Eli Biham.

Version: $Revision: 1.2 $

Constructor Summary
Tiger()
Trivial 0-arguments constructor.
Method Summary
Objectclone()
protected byte[]getResult()
protected byte[]padBuffer()
protected voidresetContext()
booleanselfTest()
protected voidtransform(byte[] in, int offset)

Constructor Detail

Tiger

public Tiger()
Trivial 0-arguments constructor.

Method Detail

clone

public Object clone()

getResult

protected byte[] getResult()

padBuffer

protected byte[] padBuffer()

resetContext

protected void resetContext()

selfTest

public boolean selfTest()

transform

protected void transform(byte[] in, int offset)
Copyright © 2001, 2002, 2003 Free Software Foundation, Inc. All Rights Reserved.