Compare commits
No commits in common. "f1052f215d0307af0f6b33d3e7968f4ca8ef745f" and "3f535052fcfcd6112b333c5eadeb7d52bd54482a" have entirely different histories.
f1052f215d
...
3f535052fc
|
@ -7,7 +7,7 @@ keywords = ["passphrase", "password"]
|
||||||
license = "AGPL-3.0"
|
license = "AGPL-3.0"
|
||||||
name = "division_of_one"
|
name = "division_of_one"
|
||||||
repository = "https://six-five-six-four.com/git/reactor/division_of_one"
|
repository = "https://six-five-six-four.com/git/reactor/division_of_one"
|
||||||
version = "0.1.5"
|
version = "0.1.3"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
rand = { version = "0.9.0", features = ["unbiased"] }
|
rand = { version = "0.9.0", features = ["unbiased"] }
|
||||||
|
|
|
@ -1,12 +1,8 @@
|
||||||
`division_of_one`
|
`division_of_one`
|
||||||
|
|
||||||
Generates diceware passphrases, PINs, and IDs, for example:
|
A diceware passphrase generator, e.g. `correct horse battery staple`
|
||||||
|
|
||||||
```
|
Also generates PINs.
|
||||||
thus disco spent rise trap suds wagon bath
|
|
||||||
607020291
|
|
||||||
7QARXWJZ
|
|
||||||
```
|
|
||||||
|
|
||||||
Install with `cargo install division_of_one` or download the Windows exe from my Git forge: https://six-five-six-four.com/git/reactor/division_of_one
|
Install with `cargo install division_of_one` or download the Windows exe from my Git forge: https://six-five-six-four.com/git/reactor/division_of_one
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
use rand::{Rng as _, seq::IndexedRandom as _};
|
use rand::{seq::IndexedRandom as _, Rng as _};
|
||||||
|
|
||||||
pub fn main() -> Result<(), String> {
|
pub fn main() -> Result<(), String> {
|
||||||
let mut args = std::env::args();
|
let mut args = std::env::args();
|
||||||
|
|
Loading…
Reference in New Issue