Home
last modified time | relevance | path

Searched refs:SHA_LONG64 (Results 1 – 2 of 2) sorted by relevance

/third_party/openssl/include/openssl/
Dsha.h85 # define SHA_LONG64 unsigned __int64 macro
88 # define SHA_LONG64 unsigned long macro
91 # define SHA_LONG64 unsigned long long macro
96 SHA_LONG64 h[8];
97 SHA_LONG64 Nl, Nh;
99 SHA_LONG64 d[SHA_LBLOCK];
/third_party/openssl/crypto/sha/
Dsha512.c185 SHA_LONG64 t = c->h[n]; in SHA512_Final()
201 SHA_LONG64 t = c->h[SHA224_DIGEST_LENGTH / 8]; in SHA512_Final()
211 SHA_LONG64 t = c->h[n]; in SHA512_Final()
225 SHA_LONG64 t = c->h[n]; in SHA512_Final()
239 SHA_LONG64 t = c->h[n]; in SHA512_Final()
266 SHA_LONG64 l; in SHA512_Update()
273 l = (c->Nl + (((SHA_LONG64) len) << 3)) & U64(0xffffffffffffffff); in SHA512_Update()
277 c->Nh += (((SHA_LONG64) len) >> 61); in SHA512_Update()
355 static const SHA_LONG64 K512[80] = {
402 # define ROTR(a,n) ({ SHA_LONG64 ret; \
[all …]