Exemple #1
0
void HashUpdateWhirlpool(HASH *Hash, const char *Data, int Len)
{
WHIRLPOOLadd((unsigned char *) Data, Len * 8, (WHIRLPOOLstruct *) Hash->Ctx);
}
Exemple #2
0
void HashUpdateWhirlpool(THash *Hash, char *Data, int Len)
{
WHIRLPOOLadd(Data, Len * 8, (WHIRLPOOLstruct *) Hash->Ctx);
}