crypted 435 source3/auth/pass_check.c static int linux_bigcrypt(char *password, char *salt1, char *crypted)
crypted 442 source3/auth/pass_check.c crypted += 2;
crypted 446 source3/auth/pass_check.c if (strncmp(p, crypted, LINUX_PASSWORD_SEG_CHARS) != 0)
crypted 449 source3/auth/pass_check.c crypted += strlen(p);
crypted 503 source4/auth/ntlm/auth_unix.c const char *crypted, const char *salt)
crypted 519 source4/auth/ntlm/auth_unix.c ret = (strcmp(osf1_bigcrypt(password, salt), crypted) == 0);
crypted 524 source4/auth/ntlm/auth_unix.c ret = (strcmp((char *)crypt(password, salt), crypted) == 0);
crypted 535 source4/auth/ntlm/auth_unix.c ret = (strcmp((char *)crypt16(password, salt), crypted) == 0);
crypted 545 source4/auth/ntlm/auth_unix.c ret = (linux_bigcrypt(password, salt, crypted));
crypted 562 source4/auth/ntlm/auth_unix.c if (strcmp(bigcrypt(password, salt), crypted) == 0)
crypted 565 source4/auth/ntlm/auth_unix.c ret = (strcmp((char *)crypt(password, salt), crypted) == 0);
crypted 574 source4/auth/ntlm/auth_unix.c ret = (strcmp(bigcrypt(password, salt), crypted) == 0);
crypted 586 source4/auth/ntlm/auth_unix.c ret = (strcmp((char *)crypt(password, salt), crypted) == 0);
crypted 603 source4/auth/ntlm/auth_unix.c char *crypted;
crypted 618 source4/auth/ntlm/auth_unix.c crypted = pws->pw_passwd;
crypted 632 source4/auth/ntlm/auth_unix.c crypted = talloc_strdup(ctx, spass->sp_pwdp);
crypted 633 source4/auth/ntlm/auth_unix.c NT_STATUS_HAVE_NO_MEMORY(crypted);
crypted 648 source4/auth/ntlm/auth_unix.c crypted = talloc_strdup(ctx, ia_password);
crypted 649 source4/auth/ntlm/auth_unix.c NT_STATUS_HAVE_NO_MEMORY(crypted);
crypted 658 source4/auth/ntlm/auth_unix.c crypted = talloc_strdup(ctx, pr_pw->ufld.fd_encrypt);
crypted 659 source4/auth/ntlm/auth_unix.c NT_STATUS_HAVE_NO_MEMORY(crypted);
crypted 669 source4/auth/ntlm/auth_unix.c crypted = talloc_strdup(ctx, pwret->pwa_passwd);
crypted 670 source4/auth/ntlm/auth_unix.c NT_STATUS_HAVE_NO_MEMORY(crypted);
crypted 683 source4/auth/ntlm/auth_unix.c crypted = talloc_strdup(ctx, mypasswd->ufld.fd_encrypt);
crypted 684 source4/auth/ntlm/auth_unix.c NT_STATUS_HAVE_NO_MEMORY(crypted);
crypted 695 source4/auth/ntlm/auth_unix.c crypted = talloc_strdup(ctx, ap->a_password);
crypted 697 source4/auth/ntlm/auth_unix.c NT_STATUS_HAVE_NO_MEMORY(crypted);
crypted 708 source4/auth/ntlm/auth_unix.c if (crypted[0] == '\0') {
crypted 721 source4/auth/ntlm/auth_unix.c nt_status = password_check(username, password, crypted, salt);
crypted 750 source4/auth/ntlm/auth_unix.c nt_status = password_check(username, pwcopy, crypted, salt);