niceware
niceware copied to clipboard
:lock: Generate or convert random bytes into passphrases. A Rust port of niceware.
This adds `BytesToPassPhraseIter` which implements `Iterator` and related traits. This should make it possible to perform the conversion without allocations. Part of #6
Instead of taking/returning slice/`Vec` the functions could take `impl Iterator`/return `impl Iterator` so that callers that don't need `Vec` do not need to allocate at all. (E.g. this is the...
Inspecting specific word that is unknown may be useful to some callers but adding a method to retrieve it basically commits to always storing it within error type. I think...