HomeSort by relevance Sort by last modified time
    Searched full:hash_state (Results 1 - 25 of 54) sorted by null

1 2 3

  /external/python/cpython3/Modules/_sha3/
sha3module.c 141 SHA3_state hash_state; member in struct:__anon33352
199 res = Keccak_HashInitialize_SHA3_224(&self->hash_state);
201 res = Keccak_HashInitialize_SHA3_256(&self->hash_state);
203 res = Keccak_HashInitialize_SHA3_384(&self->hash_state);
205 res = Keccak_HashInitialize_SHA3_512(&self->hash_state);
208 res = Keccak_HashInitialize(&self->hash_state, 1152, 448, 224, 0x01);
210 res = Keccak_HashInitialize(&self->hash_state, 1088, 512, 256, 0x01);
212 res = Keccak_HashInitialize(&self->hash_state, 832, 768, 384, 0x01);
214 res = Keccak_HashInitialize(&self->hash_state, 576, 1024, 512, 0x01);
217 res = Keccak_HashInitialize_SHAKE128(&self->hash_state);
    [all...]
  /external/tpm2/
PolicyAuthValue.c 18 HASH_STATE hashState;
PolicyPassword.c 18 HASH_STATE hashState;
PolicyPhysicalPresence.c 17 HASH_STATE hashState;
Hash.c 16 HASH_STATE hashState;
PCR_Event.c 24 HASH_STATE hashState;
PolicyCommandCode.c 23 HASH_STATE hashState;
PolicyNvWritten.c 24 HASH_STATE hashState;
PolicyCpHash.c 25 HASH_STATE hashState;
PolicyDuplicationSelect.c 23 HASH_STATE hashState;
PolicyNameHash.c 25 HASH_STATE hashState;
PolicyOR.c 40 HASH_STATE hashState;
NV_Extend.c 31 HASH_STATE hashState;
PolicyAuthorize.c 27 HASH_STATE hashState;
PolicyLocality.c 30 HASH_STATE hashState;
PolicyPCR.c 29 HASH_STATE hashState;
CryptUtil_fp.h 225 HASH_STATE *internalFmt, // IN: state to LIB_EXPORT
226 HASH_STATE *externalFmt, // OUT: exported state
305 HASH_STATE *hashState // OUT: the state of hash
336 HASH_STATE *hashState // OUT: the state of hash stack. It
  /external/e2fsprogs/lib/ext2fs/
sha256.c 81 struct hash_state { struct
85 static void sha256_compress(struct hash_state * md, const unsigned char *buf)
119 static void sha256_init(struct hash_state * md)
135 static void sha256_process(struct hash_state * md, const unsigned char *in, unsigned long inlen)
161 static void sha256_done(struct hash_state * md, unsigned char *out)
201 struct hash_state md;
238 struct hash_state md;
sha512.c 111 struct hash_state { struct
115 static void sha512_compress(struct hash_state * md, const unsigned char *buf)
153 static void sha512_init(struct hash_state * md)
167 static void sha512_done(struct hash_state * md, unsigned char *out)
206 static void sha512_process(struct hash_state * md,
237 struct hash_state md;
286 struct hash_state md;
  /external/python/cpython3/Modules/
md5module.c 54 struct md5_state hash_state; member in struct:__anon33474
357 newobj->hash_state = self->hash_state;
374 temp = self->hash_state;
393 temp = self->hash_state;
416 md5_process(&self->hash_state, buf.buf, buf.len);
527 md5_init(&new->hash_state);
536 md5_process(&new->hash_state, buf.buf, buf.len);
sha1module.c 54 struct sha1_state hash_state; member in struct:__anon33493
334 newobj->hash_state = self->hash_state;
351 temp = self->hash_state;
370 temp = self->hash_state;
393 sha1_process(&self->hash_state, buf.buf, buf.len);
504 sha1_init(&new->hash_state);
513 sha1_process(&new->hash_state, buf.buf, buf.len);
  /external/f2fs-tools/tools/
sha512.c 131 struct hash_state { struct
135 static void sha512_compress(struct hash_state * md, const unsigned char *buf)
173 static void sha512_init(struct hash_state * md)
187 static void sha512_done(struct hash_state * md, unsigned char *out)
226 static void sha512_process(struct hash_state * md,
257 struct hash_state md;
306 struct hash_state md;
  /external/wpa_supplicant_8/src/crypto/
crypto_libtomcrypt.c 27 hash_state md;
62 hash_state md;
75 hash_state md;
148 hash_state md;
  /external/llvm/include/llvm/ADT/
Hashing.h 260 struct hash_state { struct in namespace:llvm::hashing::detail
263 /// \brief Create a new hash_state structure and initialize it based on the
266 static hash_state create(const char *s, uint64_t seed) {
267 hash_state state = {
415 hash_state state = state.create(buffer, seed);
457 hash_state state = state.create(s_begin, seed);
498 hash_state state;
513 /// hash_state, empties it, and then merges the new chunk in. This also
  /external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
Hashing.h 260 struct hash_state { struct in namespace:llvm::hashing::detail
263 /// \brief Create a new hash_state structure and initialize it based on the
266 static hash_state create(const char *s, uint64_t seed) {
267 hash_state state = {
415 hash_state state = state.create(buffer, seed);
457 hash_state state = state.create(s_begin, seed);
498 hash_state state;
513 /// hash_state, empties it, and then merges the new chunk in. This also

Completed in 300 milliseconds

1 2 3