Ejemplo n.º 1
0
static void sha256_compress(hash_state * md)
{
    _sha256_compress(md);
    burn_stack(sizeof(unsigned long) * 74);
}
Ejemplo n.º 2
0
void sha256_compress(psDigestContext_t *md, unsigned char *buf)
{
    _sha256_compress(md, buf);
    psBurnStack(sizeof(uint32) * 74);
}
Ejemplo n.º 3
0
static void sha256_compress(psSha256_t *sha256, const unsigned char *buf)
{
    _sha256_compress(sha256, buf);
    psBurnStack(sizeof(uint32) * 74);
}
Ejemplo n.º 4
0
static void sha256_compress(ulong32 state[8], const unsigned char *buf)
{
  _sha256_compress(state, buf);
  burnStack(sizeof(unsigned long) * 74);
}