Searched refs:encrypted (Results 1 – 7 of 7) sorted by relevance
140 char *encrypted; in pw_encrypt() local142 encrypted = my_crypt(clear, salt); in pw_encrypt()143 if (!encrypted) in pw_encrypt()149 return encrypted; in pw_encrypt()156 char *encrypted; in pw_encrypt() local158 encrypted = crypt(clear, salt); in pw_encrypt()163 if (!encrypted || !encrypted[0]) in pw_encrypt()165 return xstrdup(encrypted); in pw_encrypt()
73 char *encrypted; in check_password()82 encrypted = pw_encrypt(plaintext, /*salt:*/ pw_pass, 1); in check_password()83 r = (strcmp(encrypted, pw_pass) == 0); in check_password()84 free(encrypted); in check_password()
52 char *encrypted; in new_password() local57 encrypted = pw_encrypt(orig, pw->pw_passwd, 1); /* returns malloced str */ in new_password()58 if (strcmp(encrypted, pw->pw_passwd) != 0) { in new_password()65 free(encrypted); in new_password()
13 readable by root and thus the encrypted passwords are no longer92 user which has password encrypted with these algorithms.
13 Stdin will be SSL-encrypted and sent to FILE_DESCRIPTOR.
23 Stdin will be SSL-encrypted and sent to FILE_DESCRIPTOR.
2121 char *encrypted; in check_user_passwd() local2126 encrypted = pw_encrypt( in check_user_passwd()2131 r = strcmp(encrypted, passwd); in check_user_passwd()2132 free(encrypted); in check_user_passwd()