[project @ Arch-1:robey@lag.net--2003-public%secsh--dev--1.0--patch-99]

use getpass
convert raw_input to getpass as suggested many weeks ago.
This commit is contained in:
Robey Pointer 2004-11-01 07:07:48 +00:00
parent 6eb59a2b53
commit 1d1a60047c
1 changed files with 2 additions and 2 deletions

View File

@ -176,7 +176,7 @@ if options.use_key:
if not READPASS:
print '*** Password needed for keyfile (use -P): %s' % options.keyfile
sys.exit(1)
key_password = raw_input()
key_password = getpass.getpass('Enter password for key: ')
try:
key = paramiko.RSAKey.from_private_key_file(options.keyfile, key_password)
except:
@ -190,7 +190,7 @@ if key is None:
if not READPASS:
print '*** Either a valid private key or password is required (use -K or -P).'
sys.exit(1)
password = raw_input()
password = getpass.getpass('Enter password: ')
verbose('Connecting to ssh host %s:%d ...' % (options.ssh_host, options.ssh_port))