Symbol: read_passphrase
usr.bin/ssh/clientloop.c
2289
response = read_passphrase("Accept updated hostkeys? "
usr.bin/ssh/clientloop.c
989
cmd = s = read_passphrase("\r\nssh> ", RP_ECHO);
usr.bin/ssh/misc.h
253
char *read_passphrase(const char *, int);
usr.bin/ssh/readpass.c
206
p = read_passphrase(prompt,
usr.bin/ssh/ssh-add.c
329
pass = read_passphrase(msg, RP_ALLOW_STDIN);
usr.bin/ssh/ssh-add.c
467
if ((pin = read_passphrase("Enter passphrase for PKCS#11: ",
usr.bin/ssh/ssh-add.c
568
p1 = read_passphrase(prompt, RP_ALLOW_STDIN);
usr.bin/ssh/ssh-add.c
571
p2 = read_passphrase(prompt, RP_ALLOW_STDIN);
usr.bin/ssh/ssh-add.c
601
pass = read_passphrase("Enter PIN for authenticator: ", RP_ALLOW_STDIN);
usr.bin/ssh/ssh-agent.c
952
pin = read_passphrase(prompt, RP_USE_ASKPASS);
usr.bin/ssh/ssh-keygen.c
1360
read_passphrase("Enter old passphrase: ",
usr.bin/ssh/ssh-keygen.c
1380
read_passphrase("Enter new passphrase (empty for no "
usr.bin/ssh/ssh-keygen.c
1382
passphrase2 = read_passphrase("Enter same passphrase again: ",
usr.bin/ssh/ssh-keygen.c
1481
passphrase = read_passphrase("Enter passphrase: ",
usr.bin/ssh/ssh-keygen.c
1743
if ((pin = read_passphrase("Enter PIN for CA key: ",
usr.bin/ssh/ssh-keygen.c
2530
if ((pin = read_passphrase(prompt,
usr.bin/ssh/ssh-keygen.c
299
pass = read_passphrase(prompt, RP_ALLOW_STDIN);
usr.bin/ssh/ssh-keygen.c
3014
passphrase1 = read_passphrase(prompt1, RP_ALLOW_STDIN);
usr.bin/ssh/ssh-keygen.c
3015
passphrase2 = read_passphrase(prompt2, RP_ALLOW_STDIN);
usr.bin/ssh/ssh-keygen.c
3101
pin = read_passphrase("Enter PIN for authenticator: ", RP_ALLOW_STDIN);
usr.bin/ssh/ssh-keygen.c
3824
passphrase = read_passphrase("Enter PIN for "
usr.bin/ssh/ssh-pkcs11.c
238
if ((pin = read_passphrase(prompt, RP_ALLOW_EOF)) == NULL) {
usr.bin/ssh/sshconnect.c
559
cp = p = read_passphrase(msg, RP_ECHO);
usr.bin/ssh/sshconnect2.c
1043
password = read_passphrase(prompt, 0);
usr.bin/ssh/sshconnect2.c
1101
password = read_passphrase(prompt, 0);
usr.bin/ssh/sshconnect2.c
1111
password = read_passphrase(prompt, RP_ALLOW_EOF);
usr.bin/ssh/sshconnect2.c
1120
retype = read_passphrase(prompt, 0);
usr.bin/ssh/sshconnect2.c
1261
pin = read_passphrase(prompt, 0);
usr.bin/ssh/sshconnect2.c
1538
passphrase = read_passphrase(prompt, 0);
usr.bin/ssh/sshconnect2.c
1992
response = read_passphrase(display_prompt, echo ? RP_ECHO : 0);