niceware icon indicating copy to clipboard operation
niceware copied to clipboard

:lock: Generate or convert random bytes into passphrases. A Rust port of niceware.

Results 3 niceware issues
Sort by recently updated
recently updated
newest added

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...