Searched refs:statebytes (Results 1 – 1 of 1) sorted by relevance
82 int crypto_hashblocks_sha512(unsigned char *statebytes,const unsigned char *in,unsigned long long i… in crypto_hashblocks_sha512() argument96 a = load_bigendian(statebytes + 0); state[0] = a; in crypto_hashblocks_sha512()97 b = load_bigendian(statebytes + 8); state[1] = b; in crypto_hashblocks_sha512()98 c = load_bigendian(statebytes + 16); state[2] = c; in crypto_hashblocks_sha512()99 d = load_bigendian(statebytes + 24); state[3] = d; in crypto_hashblocks_sha512()100 e = load_bigendian(statebytes + 32); state[4] = e; in crypto_hashblocks_sha512()101 f = load_bigendian(statebytes + 40); state[5] = f; in crypto_hashblocks_sha512()102 g = load_bigendian(statebytes + 48); state[6] = g; in crypto_hashblocks_sha512()103 h = load_bigendian(statebytes + 56); state[7] = h; in crypto_hashblocks_sha512()238 store_bigendian(statebytes + 0,state[0]); in crypto_hashblocks_sha512()[all …]