Symbol: read_passphrase
crypto/openssh/auth-pam.c
1148
read_passphrase(PAM_MSG_MEMBER(msg, i, msg),
crypto/openssh/clientloop.c
2275
response = read_passphrase("Accept updated hostkeys? "
crypto/openssh/clientloop.c
995
cmd = s = read_passphrase("\r\nssh> ", RP_ECHO);
crypto/openssh/misc.h
242
char *read_passphrase(const char *, int);
crypto/openssh/readpass.c
210
p = read_passphrase(prompt,
crypto/openssh/ssh-add.c
309
pass = read_passphrase(msg, RP_ALLOW_STDIN);
crypto/openssh/ssh-add.c
474
if ((pin = read_passphrase("Enter passphrase for PKCS#11: ",
crypto/openssh/ssh-add.c
581
p1 = read_passphrase(prompt, RP_ALLOW_STDIN);
crypto/openssh/ssh-add.c
584
p2 = read_passphrase(prompt, RP_ALLOW_STDIN);
crypto/openssh/ssh-add.c
614
pass = read_passphrase("Enter PIN for authenticator: ", RP_ALLOW_STDIN);
crypto/openssh/ssh-agent.c
954
pin = read_passphrase(prompt, RP_USE_ASKPASS);
crypto/openssh/ssh-keygen.c
1436
read_passphrase("Enter old passphrase: ",
crypto/openssh/ssh-keygen.c
1456
read_passphrase("Enter new passphrase (empty for no "
crypto/openssh/ssh-keygen.c
1458
passphrase2 = read_passphrase("Enter same passphrase again: ",
crypto/openssh/ssh-keygen.c
1556
passphrase = read_passphrase("Enter passphrase: ",
crypto/openssh/ssh-keygen.c
1816
if ((pin = read_passphrase("Enter PIN for CA key: ",
crypto/openssh/ssh-keygen.c
2601
if ((pin = read_passphrase(prompt,
crypto/openssh/ssh-keygen.c
3093
passphrase1 = read_passphrase(prompt1, RP_ALLOW_STDIN);
crypto/openssh/ssh-keygen.c
3094
passphrase2 = read_passphrase(prompt2, RP_ALLOW_STDIN);
crypto/openssh/ssh-keygen.c
3174
pin = read_passphrase("Enter PIN for authenticator: ", RP_ALLOW_STDIN);
crypto/openssh/ssh-keygen.c
329
pass = read_passphrase("Enter passphrase: ", RP_ALLOW_STDIN);
crypto/openssh/ssh-keygen.c
3889
passphrase = read_passphrase("Enter PIN for "
crypto/openssh/ssh-pkcs11.c
265
if ((pin = read_passphrase(prompt, RP_ALLOW_EOF)) == NULL) {
crypto/openssh/sshconnect.c
586
cp = p = read_passphrase(msg, RP_ECHO);
crypto/openssh/sshconnect2.c
1046
password = read_passphrase(prompt, 0);
crypto/openssh/sshconnect2.c
1101
password = read_passphrase(prompt, 0);
crypto/openssh/sshconnect2.c
1111
password = read_passphrase(prompt, RP_ALLOW_EOF);
crypto/openssh/sshconnect2.c
1120
retype = read_passphrase(prompt, 0);
crypto/openssh/sshconnect2.c
1261
pin = read_passphrase(prompt, 0);
crypto/openssh/sshconnect2.c
1537
passphrase = read_passphrase(prompt, 0);
crypto/openssh/sshconnect2.c
1985
response = read_passphrase(display_prompt, echo ? RP_ECHO : 0);
lib/libtcplay/tcplay.c
1223
if ((error = read_passphrase("New passphrase: ", pass, MAX_PASSSZ,
lib/libtcplay/tcplay.c
1225
(read_passphrase("Repeat passphrase: ", pass_again,
lib/libtcplay/tcplay.c
571
if ((error = read_passphrase("Passphrase: ", pass, MAX_PASSSZ,
lib/libtcplay/tcplay.c
573
(read_passphrase("Repeat passphrase: ", pass_again,
lib/libtcplay/tcplay.c
618
if ((error = read_passphrase("Passphrase for hidden volume: ",
lib/libtcplay/tcplay.c
620
(read_passphrase("Repeat passphrase: ", pass_again,
lib/libtcplay/tcplay.c
904
if ((error = read_passphrase("Passphrase: ", pass,
lib/libtcplay/tcplay.c
939
if ((error = read_passphrase(
lib/libtcplay/tcplay.h
253
int read_passphrase(const char *prompt, char *pass, size_t passlen,