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