Home
last modified time | relevance | path

Searched refs:encrypted (Results 1 – 7 of 7) sorted by relevance

/busybox-1.35.0/libbb/
Dpw_encrypt.c140 char *encrypted; in pw_encrypt() local
142 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() local
158 encrypted = crypt(clear, salt); in pw_encrypt()
163 if (!encrypted || !encrypted[0]) in pw_encrypt()
165 return xstrdup(encrypted); in pw_encrypt()
Dcorrect_password.c73 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()
/busybox-1.35.0/loginutils/
Dpasswd.c52 char *encrypted; in new_password() local
57 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()
DConfig.src13 readable by root and thus the encrypted passwords are no longer
92 user which has password encrypted with these algorithms.
/busybox-1.35.0/networking/ssl_helper/
DREADME13 Stdin will be SSL-encrypted and sent to FILE_DESCRIPTOR.
/busybox-1.35.0/networking/ssl_helper-wolfssl/
DREADME23 Stdin will be SSL-encrypted and sent to FILE_DESCRIPTOR.
/busybox-1.35.0/networking/
Dhttpd.c2121 char *encrypted; in check_user_passwd() local
2126 encrypted = pw_encrypt( in check_user_passwd()
2131 r = strcmp(encrypted, passwd); in check_user_passwd()
2132 free(encrypted); in check_user_passwd()