Skip to content

Commit 1486715

Browse files
authored
Merge pull request dropbox#180 from rianhunter/master
zxcvbn-cpp port and a random change
2 parents e24c888 + ff4ff80 commit 1486715

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ Consider using zxcvbn as an algorithmic alternative to password composition poli
2121
At Dropbox we use zxcvbn ([Release notes](https://github.com/dropbox/zxcvbn/releases)) on our web, desktop, iOS and Android clients. If JavaScript doesn't work for you, others have graciously ported the library to these languages:
2222

2323
* [`zxcvbn-c`](https://github.com/tsyrogit/zxcvbn-c) (C/C++)
24+
* [`zxcvbn-cpp`](https://github.com/rianhunter/zxcvbn-cpp) (C/C++/Python/JS)
2425
* [`zxcvbn4j`](https://github.com/nulab/zxcvbn4j) (Java)
2526
* [`zxcvbn-ios`](https://github.com/dropbox/zxcvbn-ios) (Objective-C)
2627
* [`python-zxcvbn`](https://github.com/dropbox/python-zxcvbn) (Python)

test/test-matching.coffee

+1-1
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@ test 'sequence matching', (t) ->
349349
pattern = 'jihg'
350350
for [password, i, j] in genpws pattern, prefixes, suffixes
351351
matches = matching.sequence_match password
352-
msg = 'matches embedded sequence patterns'
352+
msg = "matches embedded sequence patterns #{password}"
353353
check_matches msg, t, matches, 'sequence', [pattern], [[i, j]],
354354
sequence_name: ['lower']
355355
ascending: [false]

0 commit comments

Comments
 (0)