Searched refs:MD5_BLOCK_LENGTH (Results 1 - 4 of 4) sorted by relevance

/freebsd-11-stable/crypto/openssh/openbsd-compat/
H A 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)));
H A Dmd5.c44 static u_int8_t PADDING[MD5_BLOCK_LENGTH] = {
74 have = (size_t)((ctx->count >> 3) & (MD5_BLOCK_LENGTH - 1));
75 need = MD5_BLOCK_LENGTH - have;
89 /* Process data in MD5_BLOCK_LENGTH-byte chunks. */
90 while (len >= MD5_BLOCK_LENGTH) {
92 input += MD5_BLOCK_LENGTH;
93 len -= MD5_BLOCK_LENGTH;
116 padlen = MD5_BLOCK_LENGTH -
117 ((ctx->count >> 3) & (MD5_BLOCK_LENGTH - 1));
119 padlen += MD5_BLOCK_LENGTH;
[all...]
/freebsd-11-stable/sys/sys/
H A Dmd5.h31 #define MD5_BLOCK_LENGTH 64 macro
/freebsd-11-stable/crypto/openssh/
H A Ddigest-libc.c64 MD5_BLOCK_LENGTH,

Completed in 170 milliseconds