Ejemplo n.º 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;
}
Ejemplo n.º 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;
}
Ejemplo n.º 3
0
static void sha1_compress(hash_state *md)
{
   _sha1_compress(md);
   burn_stack(sizeof(unsigned long) * 87);
}
Ejemplo n.º 4
0
Archivo: sha1.c Proyecto: B-Rich/NUL
static void sha1_compress(psDigestContext_t *md)
{
	_sha1_compress(md);
	psBurnStack(sizeof(uint32) * 87);
}