Symbol: read_passphrase
crypto/openssh/clientloop.c
2309
response = read_passphrase("Accept updated hostkeys? "
crypto/openssh/clientloop.c
994
cmd = s = read_passphrase("\r\nssh> ", RP_ECHO);
crypto/openssh/misc.h
255
char *read_passphrase(const char *, int);
crypto/openssh/readpass.c
207
p = read_passphrase(prompt,
crypto/openssh/ssh-add.c
336
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
575
p1 = read_passphrase(prompt, RP_ALLOW_STDIN);
crypto/openssh/ssh-add.c
578
p2 = read_passphrase(prompt, RP_ALLOW_STDIN);
crypto/openssh/ssh-add.c
608
pass = read_passphrase("Enter PIN for authenticator: ", RP_ALLOW_STDIN);
crypto/openssh/ssh-agent.c
976
pin = read_passphrase(prompt, RP_USE_ASKPASS);
crypto/openssh/ssh-keygen.c
1388
read_passphrase("Enter old passphrase: ",
crypto/openssh/ssh-keygen.c
1408
read_passphrase("Enter new passphrase (empty for no "
crypto/openssh/ssh-keygen.c
1410
passphrase2 = read_passphrase("Enter same passphrase again: ",
crypto/openssh/ssh-keygen.c
1509
passphrase = read_passphrase("Enter passphrase: ",
crypto/openssh/ssh-keygen.c
1771
if ((pin = read_passphrase("Enter PIN for CA key: ",
crypto/openssh/ssh-keygen.c
2558
if ((pin = read_passphrase(prompt,
crypto/openssh/ssh-keygen.c
3042
passphrase1 = read_passphrase(prompt1, RP_ALLOW_STDIN);
crypto/openssh/ssh-keygen.c
3043
passphrase2 = read_passphrase(prompt2, RP_ALLOW_STDIN);
crypto/openssh/ssh-keygen.c
3129
pin = read_passphrase("Enter PIN for authenticator: ", RP_ALLOW_STDIN);
crypto/openssh/ssh-keygen.c
313
pass = read_passphrase(prompt, RP_ALLOW_STDIN);
crypto/openssh/ssh-keygen.c
3858
passphrase = read_passphrase("Enter PIN for "
crypto/openssh/ssh-pkcs11.c
241
if ((pin = read_passphrase(prompt, RP_ALLOW_EOF)) == NULL) {
crypto/openssh/sshconnect.c
624
cp = p = read_passphrase(msg, RP_ECHO);
crypto/openssh/sshconnect2.c
1053
password = read_passphrase(prompt, 0);
crypto/openssh/sshconnect2.c
1111
password = read_passphrase(prompt, 0);
crypto/openssh/sshconnect2.c
1121
password = read_passphrase(prompt, RP_ALLOW_EOF);
crypto/openssh/sshconnect2.c
1130
retype = read_passphrase(prompt, 0);
crypto/openssh/sshconnect2.c
1271
pin = read_passphrase(prompt, 0);
crypto/openssh/sshconnect2.c
1549
passphrase = read_passphrase(prompt, 0);
crypto/openssh/sshconnect2.c
2003
response = read_passphrase(display_prompt, echo ? RP_ECHO : 0);