HomeSort by relevance Sort by last modified time
    Searched defs:hashsize (Results 1 - 6 of 6) sorted by null

  /external/dropbear/libtomcrypt/src/mac/hmac/
hmac_init.c 33 unsigned long hashsize; local
45 hashsize = hash_descriptor[hash].hashsize;
71 if(hashsize < HMAC_BLOCKSIZE) {
72 zeromem((hmac->key) + hashsize, (size_t)(HMAC_BLOCKSIZE - hashsize));
74 keylen = hashsize;
hmac_done.c 32 unsigned long hashsize, i; local
45 hashsize = hash_descriptor[hash].hashsize;
49 isha = XMALLOC(hashsize);
77 if ((err = hash_descriptor[hash].process(&hmac->md, isha, hashsize)) != CRYPT_OK) {
85 for (i = 0; i < hashsize && i < *outlen; i++) {
94 zeromem(isha, hashsize);
95 zeromem(buf, hashsize);
  /external/srec/srec/crec/
astar_pphash.h 41 int hashsize; member in struct:__anon7572
  /external/dropbear/
algo.h 62 unsigned char hashsize; member in struct:dropbear_hash
  /external/dropbear/libtomcrypt/src/headers/
tomcrypt_hash.h 156 unsigned long hashsize; member in struct:ltc_hash_descriptor
  /external/openssl/ssl/
t1_enc.c 850 int hashsize = EVP_MD_size(md); local
851 if (hashsize < 0 || hashsize > (int)(sizeof buf - (size_t)(q-buf)))
860 if (i != (unsigned int)hashsize) /* can't really happen */

Completed in 48 milliseconds