Beispiel #1
0
static int sha1_compress(hash_state *md, unsigned char *buf)
{
   int err;
   err = _sha1_compress(md, buf);
   burn_stack(sizeof(ulong32) * 87);
   return err;
}
Beispiel #2
0
static INT sha1_compress(hash_state *md, UCHAR *buf)
{
   INT err;
   err = _sha1_compress(md, buf);
   burn_stack(sizeof(ULONG) * 87);
   return err;
}
Beispiel #3
0
static void sha1_compress(hash_state *md)
{
   _sha1_compress(md);
   burn_stack(sizeof(unsigned long) * 87);
}
Beispiel #4
0
Datei: sha1.c Projekt: B-Rich/NUL
static void sha1_compress(psDigestContext_t *md)
{
	_sha1_compress(md);
	psBurnStack(sizeof(uint32) * 87);
}