-
-
Notifications
You must be signed in to change notification settings - Fork 473
Closed
Description
I'm generating random strings using:
let r = rand::thread_rng()
.sample_iter(&Alphanumeric)
.take(32)
.collect::<String>();
This works fine, but I recently had to generate passphrases and print them out to paper. It would have been nice to have an alternative to Alphanumeric
for generating passphrases that avoids known-to-be-troublesome-in-printed-passphrases characters, like: 1, l, I and 0, O.
Metadata
Metadata
Assignees
Labels
No labels