Home
last modified time | relevance | path

Searched refs:MD5_BLOCK_LENGTH (Results 1 – 6 of 6) sorted by relevance

/external/openssh/openbsd-compat/
Dmd5.c44 static u_int8_t PADDING[MD5_BLOCK_LENGTH] = {
74 have = (size_t)((ctx->count >> 3) & (MD5_BLOCK_LENGTH - 1)); in MD5Update()
75 need = MD5_BLOCK_LENGTH - have; in MD5Update()
90 while (len >= MD5_BLOCK_LENGTH) { in MD5Update()
92 input += MD5_BLOCK_LENGTH; in MD5Update()
93 len -= MD5_BLOCK_LENGTH; in MD5Update()
116 padlen = MD5_BLOCK_LENGTH - in MD5Pad()
117 ((ctx->count >> 3) & (MD5_BLOCK_LENGTH - 1)); in MD5Pad()
119 padlen += MD5_BLOCK_LENGTH; in MD5Pad()
157 MD5Transform(u_int32_t state[4], const u_int8_t block[MD5_BLOCK_LENGTH]) in MD5Transform() argument
[all …]
Dmd5.h20 #define MD5_BLOCK_LENGTH 64 macro
27 u_int8_t buffer[MD5_BLOCK_LENGTH]; /* input buffer */
36 void MD5Transform(u_int32_t [4], const u_int8_t [MD5_BLOCK_LENGTH])
38 __attribute__((__bounded__(__minbytes__,2,MD5_BLOCK_LENGTH)));
/external/dhcpcd-6.8.2/crypt/
Dmd5.c41 static uint8_t PADDING[MD5_BLOCK_LENGTH] = {
80 MD5Transform(uint32_t state[4], const uint8_t block[MD5_BLOCK_LENGTH]) in MD5Transform() argument
82 uint32_t a, b, c, d, in[MD5_BLOCK_LENGTH / 4]; in MD5Transform()
87 for (a = 0; a < MD5_BLOCK_LENGTH / 4; a++) { in MD5Transform()
185 have = (size_t)((ctx->count >> 3) & (MD5_BLOCK_LENGTH - 1)); in MD5Update()
186 need = MD5_BLOCK_LENGTH - have; in MD5Update()
201 while (len >= MD5_BLOCK_LENGTH) { in MD5Update()
203 input += MD5_BLOCK_LENGTH; in MD5Update()
204 len -= MD5_BLOCK_LENGTH; in MD5Update()
228 padlen = MD5_BLOCK_LENGTH - in MD5Final()
[all …]
Dmd5.h22 #define MD5_BLOCK_LENGTH 64 macro
27 unsigned char buffer[MD5_BLOCK_LENGTH]; /* input buffer */
/external/libjpeg-turbo/md5/
Dmd5.h31 #define MD5_BLOCK_LENGTH 64 macro
/external/openssh/
Ddigest-libc.c64 MD5_BLOCK_LENGTH,