Whirlpool hash implementation. The fact that subdirectory and .h file are

called whrlpool is not a typo, but a way to keep the names shorter than
8 characters. Remaining TODO list comprises adding OID, EVP, corresponding
flag to apps/openssl dgst, benchmark, engage assembler...
This commit is contained in:
Andy Polyakov
2005-11-28 20:09:58 +00:00
parent a53cb070e3
commit d1593e6b15
11 changed files with 1703 additions and 5 deletions

View File

@@ -416,6 +416,11 @@ sub main'set_label
}
}
sub main'data_byte
{
push(@out,"\tDB\t".join(',',@_)."\n");
}
sub main'data_word
{
push(@out,"\tDD\t".join(',',@_)."\n");

View File

@@ -401,6 +401,11 @@ sub main'set_label
push(@out,"$label{$_[0]}:\n");
}
sub main'data_byte
{
push(@out,(($main'mwerks)?".byte\t":"DB\t").join(',',@_)."\n");
}
sub main'data_word
{
push(@out,(($main'mwerks)?".long\t":"DD\t").join(',',@_)."\n");

View File

@@ -594,6 +594,11 @@ ___
}
}
sub main'data_byte
{
push(@out,"\t.byte\t".join(',',@_)."\n");
}
sub main'data_word
{
push(@out,"\t.long\t".join(',',@_)."\n");