HomeSort by relevance Sort by last modified time
    Searched defs:hashsize (Results 1 - 10 of 10) 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:__anon28269
  /external/dropbear/
algo.h 62 unsigned char hashsize; member in struct:dropbear_hash
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
phash.c 15 #define hashsize(n) ((ub4)1<<(n)) macro
16 #define hashmask(n) (hashsize(n)-1)
80 In which case, the hash table should have hashsize(10) elements.
  /external/dropbear/libtomcrypt/src/headers/
tomcrypt_hash.h 156 unsigned long hashsize; member in struct:ltc_hash_descriptor
  /system/extras/ksmutils/
lookup3.c 67 #define hashsize(n) ((uint32_t)1<<(n)) macro
68 #define hashmask(n) (hashsize(n)-1)
270 In which case, the hash table should have hashsize(10) elements.
    [all...]
  /external/chromium_org/third_party/openssl/openssl/ssl/
t1_enc.c 917 int hashsize = EVP_MD_size(md); local
918 if (hashsize < 0 || hashsize > (int)(sizeof buf - (size_t)(q-buf)))
927 if (i != (unsigned int)hashsize) /* can't really happen */
    [all...]
  /external/openssl/ssl/
t1_enc.c 917 int hashsize = EVP_MD_size(md); local
918 if (hashsize < 0 || hashsize > (int)(sizeof buf - (size_t)(q-buf)))
927 if (i != (unsigned int)hashsize) /* can't really happen */
    [all...]
  /external/opencv/cxcore/include/
cxtypes.h 755 int hashsize; member in struct:CvSparseMat
    [all...]

Completed in 623 milliseconds