trustelem / zxcvbn

Go implementation of Dropbox's zxcvbn realistic password strength estimator
MIT License
67 stars 13 forks source link

Use ASCIISet #18

Open elliotwutingfeng opened 1 year ago

elliotwutingfeng commented 1 year ago

Proposing use of ASCIISet instead of map[byte]bool.

ASCIISet is a zero-dependency library for sets of ASCII characters with 28 times faster lookup speed than map[byte]bool.