defuse / passgenr

A library for generating cryptographically-secure passwords in Rust.
MIT License
8 stars 1 forks source link

Should the character sets be `static` instead of `const`? #13

Open defuse opened 6 years ago

defuse commented 6 years ago

Apparently const is like #define and static is like an actual static region in memory storing the value. Obviously we want the latter, since we don't want the wordlist to be duplicated every time it gets used.