OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:crypted
(Results
1 - 3
of
3
) sorted by null
/external/openssh/openbsd-compat/
xcrypt.c
63
char *
crypted
;
local
67
crypted
= md5_crypt(password, salt);
69
crypted
= crypt(password, salt);
72
crypted
= bigcrypt(password, salt);
74
crypted
= crypt(password, salt);
76
crypted
= bigcrypt(password, salt);
78
crypted
= crypt(password, salt);
81
return
crypted
;
/external/openssh/
sshconnect2.c
987
char prompt[256], *password, *
crypted
;
local
996
if ((
crypted
= pw_encrypt(password, crypt_scheme, salt)) == NULL) {
1000
crypted
= xstrdup("");
1006
debug3("%s:
crypted
= %s", __func__,
crypted
);
1009
if (hash_buffer(
crypted
, strlen(
crypted
), EVP_sha256(),
1014
bzero(
crypted
, strlen(
crypted
));
1016
xfree(
crypted
);
[
all
...]
/external/grub/stage2/
builtins.c
2583
char
crypted
[36];
local
[
all
...]
Completed in 70 milliseconds