Lines Matching refs:strlen
47 return (strncmp(salt, magic, strlen(magic)) == 0); in is_md5_salt()
64 if(strncmp(sp, magic, strlen(magic)) == 0) in md5_crypt()
65 sp += strlen(magic); in md5_crypt()
83 MD5_Update(&ctx, pw, strlen(pw)); in md5_crypt()
86 MD5_Update(&ctx, magic, strlen(magic)); in md5_crypt()
93 MD5_Update(&ctx1, pw, strlen(pw)); in md5_crypt()
95 MD5_Update(&ctx1, pw, strlen(pw)); in md5_crypt()
98 for(pl = strlen(pw); pl > 0; pl -= 16) in md5_crypt()
105 for (j = 0, i = strlen(pw); i != 0; i >>= 1) in md5_crypt()
124 MD5_Update(&ctx1, pw, strlen(pw)); in md5_crypt()
132 MD5_Update(&ctx1, pw, strlen(pw)); in md5_crypt()
137 MD5_Update(&ctx1, pw, strlen(pw)); in md5_crypt()