Re: New hash function: avalanche

From: Phil Carmody (thefatphil_demunge@yahoo.co.uk)
Date: 02/20/03


From: "Phil Carmody" <thefatphil_demunge@yahoo.co.uk>
Date: Thu, 20 Feb 2003 17:33:46 +0200

On Wed, 19 Feb 2003 14:34:21 +0000, Jason wrote:
> /* ************* Avalanche.c ************************* */
> /* (c) 2003 Jason Holt */
> /* Total avalanche effect hash function - changes every*/
> /* output bit for any bit change on input. */
> /* */
> /* Free for academic use, but do not use commercially! */
> /* Contact author for licensing terms. */
> /* *****************************************************/
>
> // Copy output data immediately; not thread safe
> char *Avalanche(char *input, int inlen) {
>
> static char out[16];
>
> // Randomizing s-box:
> char aybabtu[16] =
> {65,76,76,32,89,79,85,82,32,66,65,83,69,33,33,33};

Copyright Jason Holt, eh? I don't think so. That's not your code at all.
I think you'll find it belong to us.

Phil