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

  /external/boringssl/src/crypto/digest/
md32_common.h 70 * |HASH_CBLOCK| must be defined as the integer block size, in bytes.
78 * uint8_t data[HASH_CBLOCK];
104 * where each block is |HASH_CBLOCK| bytes; i.e. |data| points to a array of
105 * |HASH_CBLOCK * num| bytes. |state| points to the |h| member of a |HASH_CTX|,
116 #ifndef HASH_CBLOCK
117 #error "HASH_CBLOCK must be defined!"
246 if (len >= HASH_CBLOCK || len + n >= HASH_CBLOCK) {
247 memcpy(c->data + n, data, HASH_CBLOCK - n);
249 n = HASH_CBLOCK - n
    [all...]
  /external/mdnsresponder/mDNSCore/
DNSDigest.c 258 #define HASH_CBLOCK MD5_CBLOCK
303 * HASH_CBLOCK
342 * assumed to be HASH_CBLOCK/4 if not stated otherwise.
355 * #define HASH_CBLOCK MD5_CBLOCK
370 #ifndef HASH_CBLOCK
371 #error "HASH_CBLOCK must be defined!"
405 #define HASH_LBLOCK (HASH_CBLOCK/4)
676 if ((c->num+len) >= HASH_CBLOCK)
684 len-=(HASH_CBLOCK-c->num);
716 sw=(int)(len/HASH_CBLOCK);
    [all...]
  /external/boringssl/src/crypto/md4/
md4.c 79 #define HASH_CBLOCK 64
  /external/boringssl/src/crypto/md5/
md5.c 101 #define HASH_CBLOCK 64
  /external/boringssl/src/crypto/sha/
sha256.c 139 #define HASH_CBLOCK 64
sha1.c 100 #define HASH_CBLOCK 64

Completed in 117 milliseconds