zxcvbn 0.1.9 → 0.1.12
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +16 -0
- data/README.md +2 -2
- data/lib/zxcvbn/frequency_lists/english_wikipedia.txt +30000 -0
- data/lib/zxcvbn/frequency_lists/female_names.txt +3712 -0
- data/lib/zxcvbn/frequency_lists/male_names.txt +983 -0
- data/lib/zxcvbn/frequency_lists/passwords.txt +30000 -0
- data/lib/zxcvbn/frequency_lists/surnames.txt +10000 -0
- data/lib/zxcvbn/frequency_lists/us_tv_and_film.txt +19160 -0
- data/lib/zxcvbn/frequency_lists.rb +17 -9
- data/lib/zxcvbn/matching.rb +56 -50
- data/lib/zxcvbn/scoring.rb +1 -1
- data/lib/zxcvbn/version.rb +1 -1
- data/lib/zxcvbn.rb +14 -8
- metadata +9 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3abba874325220873de3e16bf2213afe1e51c468e6c5059ee793641563bbd123
|
4
|
+
data.tar.gz: e555337f55746d9fc2b2339797e287fb1a16c292d2d2b4aa54fdcfa0c7fbe370
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ec032e5e93416aef8ea9526cc4ff39e90a381228965c718f50f0311f900c8c1029d1ad13b7efd88f79c3fa890e5fd0b6c61d3252131430e7f19b383e55e62767
|
7
|
+
data.tar.gz: 5174f7aa4a0a65beefc790ea0f252abc749a203022b05d6b9ce33a6771599d6c41a33c2b341cda009eb0aad9d4d9df6da5b7cd308c2d3fb566657aafcecd0fab
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,19 @@
|
|
1
|
+
## [0.1.12] - 2024-10-29
|
2
|
+
- [16] Stop using OpenStruct
|
3
|
+
|
4
|
+
*Mitchell Henke (@mitchellhenke)*
|
5
|
+
|
6
|
+
## [0.1.11] - 2024-08-25
|
7
|
+
- [13] Reduce object allocations (continuation)
|
8
|
+
- [12] Reduce object allocations
|
9
|
+
|
10
|
+
*Jukka Rautanen (@jukra)*
|
11
|
+
|
12
|
+
## [0.1.10] - 2023-10-15
|
13
|
+
- [#10] Refactor implementation to avoid thread safety issues for user inputs
|
14
|
+
|
15
|
+
*Adam Kiczula (@adamkiczula)*
|
16
|
+
|
1
17
|
## [0.1.9] - 2023-01-27
|
2
18
|
- [#6] [#7] Security/Performance fix to vulnerability to DoS attacks.
|
3
19
|
|
data/README.md
CHANGED
@@ -95,7 +95,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
|
|
95
95
|
|
96
96
|
## Contributing
|
97
97
|
|
98
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/formigarafa/zxcvbn. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/
|
98
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/formigarafa/zxcvbn-rb. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/formigarafa/zxcvbn-rb/blob/master/CODE_OF_CONDUCT.md).
|
99
99
|
|
100
100
|
## License
|
101
101
|
|
@@ -103,4 +103,4 @@ The gem is available as open source under the terms of the [MIT License](https:/
|
|
103
103
|
|
104
104
|
## Code of Conduct
|
105
105
|
|
106
|
-
Everyone interacting in the Zxcvbn project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/
|
106
|
+
Everyone interacting in the Zxcvbn project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/formigarafa/zxcvbn-rb/blob/master/CODE_OF_CONDUCT.md).
|