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

  /external/dhcpcd-6.8.2/crypt/
md5.h 22 #define MD5_BLOCK_LENGTH 64
27 unsigned char buffer[MD5_BLOCK_LENGTH]; /* input buffer */
md5.c 41 static uint8_t PADDING[MD5_BLOCK_LENGTH] = {
80 MD5Transform(uint32_t state[4], const uint8_t block[MD5_BLOCK_LENGTH])
82 uint32_t a, b, c, d, in[MD5_BLOCK_LENGTH / 4];
87 for (a = 0; a < MD5_BLOCK_LENGTH / 4; a++) {
185 have = (size_t)((ctx->count >> 3) & (MD5_BLOCK_LENGTH - 1));
186 need = MD5_BLOCK_LENGTH - have;
200 /* Process data in MD5_BLOCK_LENGTH-byte chunks. */
201 while (len >= MD5_BLOCK_LENGTH) {
203 input += MD5_BLOCK_LENGTH;
204 len -= MD5_BLOCK_LENGTH;
    [all...]
  /external/libjpeg-turbo/md5/
md5.h 31 #define MD5_BLOCK_LENGTH 64

Completed in 209 milliseconds