passterm 1.0.0

Read passwords from terminal
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Terminal Password Prompt

Cross platform way to disable terminal echo. Works on Linux/BSD, macOS, and
Windows.

This is similar to python's getpass functionality.

Example

```rust
use passterm::read_password;

print!("Password: ");
let pass = read_password().unwrap();
```

See `examples/pass.rs` for a complete example.