├── .editorconfig ├── .gitattributes ├── .gitignore ├── GitVersion.yml ├── LICENSE ├── README.md ├── azure-pipelines.yml ├── zxcvbn-core-list-builder ├── GlobalSuppressions.cs ├── ListBuilder.cs ├── Program.cs ├── RankDictionaryName.cs └── zxcvbn-core-list-builder.csproj ├── zxcvbn-core-test ├── Core │ └── CoreTests.cs ├── GlobalSuppressions.cs ├── Matcher │ ├── DateMatcherTests.cs │ ├── DictionaryMatcherTests.cs │ ├── L33tMatcherTests.cs │ ├── RegexMatcherTests.cs │ ├── RepeatMatcherTests.cs │ ├── ReverseDictionaryMatcherTests.cs │ ├── SequenceMatcherTests.cs │ └── SpatialMatcherTests.cs ├── Scoring │ ├── BruteForceScoringTests.cs │ ├── DateScoringTests.cs │ ├── DictionaryScoringTests.cs │ ├── RegexScoringTests.cs │ ├── RepeatScoringTests.cs │ ├── ScoringTests.cs │ ├── SequenceScoringTests.cs │ └── SpatialTests.cs ├── test_dictionary_1.txt ├── test_dictionary_2.txt ├── test_dictionary_3.txt ├── zxcvbn-core-test.csproj └── zxcvbn-strong-name-key.snk ├── zxcvbn-core ├── AttackTimes.cs ├── Core.cs ├── CrackTimes.cs ├── CrackTimesDisplay.cs ├── Data │ ├── english.lst │ ├── female_names.lst │ ├── male_names.lst │ ├── passwords.lst │ ├── surnames.lst │ └── us_tv_and_film.lst ├── DefaultMatcherFactory.cs ├── Dictionaries │ ├── english.lst │ ├── female_names.lst │ ├── male_names.lst │ ├── passwords.lst │ ├── surnames.lst │ └── us_tv_and_film.lst ├── Feedback.cs ├── FeedbackItem.cs ├── GlobalSuppressions.cs ├── Matcher │ ├── DateMatcher.cs │ ├── DictionaryMatcher.cs │ ├── IMatcher.cs │ ├── L33tMatcher.cs │ ├── LooseDate.cs │ ├── Matches │ │ ├── BruteForceMatch.cs │ │ ├── DateMatch.cs │ │ ├── DictionaryMatch.cs │ │ ├── Match.cs │ │ ├── RegexMatch.cs │ │ ├── RepeatMatch.cs │ │ ├── SequenceMatch.cs │ │ └── SpatialMatch.cs │ ├── Point.cs │ ├── RegexMatcher.cs │ ├── RepeatMatcher.cs │ ├── ReverseDictionaryMatcher.cs │ ├── SequenceMatcher.cs │ ├── SpatialGraph.cs │ └── SpatialMatcher.cs ├── MostGuessableMatchResult.cs ├── OptimalValues.cs ├── PasswordScoring.cs ├── Properties │ └── AssemblyInfo.cs ├── Result.cs ├── Scoring │ ├── BruteForceGuessesCalculator.cs │ ├── DateGuessesCalculator.cs │ ├── DictionaryGuessesCalculator.cs │ ├── RegexGuessesCalculator.cs │ ├── RepeatGuessesCalculator.cs │ ├── SequenceGuessesCalculator.cs │ └── SpatialGuessesCalculator.cs ├── TimeEstimates.cs ├── Utility.cs ├── zxcvbn-core.csproj ├── zxcvbn-core.xml └── zxcvbn-strong-name-key.snk └── zxcvbn-cs.sln /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/.gitignore -------------------------------------------------------------------------------- /GitVersion.yml: -------------------------------------------------------------------------------- 1 | next-version: 8.0 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/README.md -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /zxcvbn-core-list-builder/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core-list-builder/GlobalSuppressions.cs -------------------------------------------------------------------------------- /zxcvbn-core-list-builder/ListBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core-list-builder/ListBuilder.cs -------------------------------------------------------------------------------- /zxcvbn-core-list-builder/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core-list-builder/Program.cs -------------------------------------------------------------------------------- /zxcvbn-core-list-builder/RankDictionaryName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core-list-builder/RankDictionaryName.cs -------------------------------------------------------------------------------- /zxcvbn-core-list-builder/zxcvbn-core-list-builder.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core-list-builder/zxcvbn-core-list-builder.csproj -------------------------------------------------------------------------------- /zxcvbn-core-test/Core/CoreTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core-test/Core/CoreTests.cs -------------------------------------------------------------------------------- /zxcvbn-core-test/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core-test/GlobalSuppressions.cs -------------------------------------------------------------------------------- /zxcvbn-core-test/Matcher/DateMatcherTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core-test/Matcher/DateMatcherTests.cs -------------------------------------------------------------------------------- /zxcvbn-core-test/Matcher/DictionaryMatcherTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core-test/Matcher/DictionaryMatcherTests.cs -------------------------------------------------------------------------------- /zxcvbn-core-test/Matcher/L33tMatcherTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core-test/Matcher/L33tMatcherTests.cs -------------------------------------------------------------------------------- /zxcvbn-core-test/Matcher/RegexMatcherTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core-test/Matcher/RegexMatcherTests.cs -------------------------------------------------------------------------------- /zxcvbn-core-test/Matcher/RepeatMatcherTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core-test/Matcher/RepeatMatcherTests.cs -------------------------------------------------------------------------------- /zxcvbn-core-test/Matcher/ReverseDictionaryMatcherTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core-test/Matcher/ReverseDictionaryMatcherTests.cs -------------------------------------------------------------------------------- /zxcvbn-core-test/Matcher/SequenceMatcherTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core-test/Matcher/SequenceMatcherTests.cs -------------------------------------------------------------------------------- /zxcvbn-core-test/Matcher/SpatialMatcherTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core-test/Matcher/SpatialMatcherTests.cs -------------------------------------------------------------------------------- /zxcvbn-core-test/Scoring/BruteForceScoringTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core-test/Scoring/BruteForceScoringTests.cs -------------------------------------------------------------------------------- /zxcvbn-core-test/Scoring/DateScoringTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core-test/Scoring/DateScoringTests.cs -------------------------------------------------------------------------------- /zxcvbn-core-test/Scoring/DictionaryScoringTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core-test/Scoring/DictionaryScoringTests.cs -------------------------------------------------------------------------------- /zxcvbn-core-test/Scoring/RegexScoringTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core-test/Scoring/RegexScoringTests.cs -------------------------------------------------------------------------------- /zxcvbn-core-test/Scoring/RepeatScoringTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core-test/Scoring/RepeatScoringTests.cs -------------------------------------------------------------------------------- /zxcvbn-core-test/Scoring/ScoringTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core-test/Scoring/ScoringTests.cs -------------------------------------------------------------------------------- /zxcvbn-core-test/Scoring/SequenceScoringTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core-test/Scoring/SequenceScoringTests.cs -------------------------------------------------------------------------------- /zxcvbn-core-test/Scoring/SpatialTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core-test/Scoring/SpatialTests.cs -------------------------------------------------------------------------------- /zxcvbn-core-test/test_dictionary_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core-test/test_dictionary_1.txt -------------------------------------------------------------------------------- /zxcvbn-core-test/test_dictionary_2.txt: -------------------------------------------------------------------------------- 1 | z 2 | 8 3 | 99 4 | $ 5 | asdf1234&* -------------------------------------------------------------------------------- /zxcvbn-core-test/test_dictionary_3.txt: -------------------------------------------------------------------------------- 1 | 123 2 | 321 3 | 456 4 | 654 -------------------------------------------------------------------------------- /zxcvbn-core-test/zxcvbn-core-test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core-test/zxcvbn-core-test.csproj -------------------------------------------------------------------------------- /zxcvbn-core-test/zxcvbn-strong-name-key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core-test/zxcvbn-strong-name-key.snk -------------------------------------------------------------------------------- /zxcvbn-core/AttackTimes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core/AttackTimes.cs -------------------------------------------------------------------------------- /zxcvbn-core/Core.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core/Core.cs -------------------------------------------------------------------------------- /zxcvbn-core/CrackTimes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core/CrackTimes.cs -------------------------------------------------------------------------------- /zxcvbn-core/CrackTimesDisplay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core/CrackTimesDisplay.cs -------------------------------------------------------------------------------- /zxcvbn-core/Data/english.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core/Data/english.lst -------------------------------------------------------------------------------- /zxcvbn-core/Data/female_names.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core/Data/female_names.lst -------------------------------------------------------------------------------- /zxcvbn-core/Data/male_names.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core/Data/male_names.lst -------------------------------------------------------------------------------- /zxcvbn-core/Data/passwords.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core/Data/passwords.lst -------------------------------------------------------------------------------- /zxcvbn-core/Data/surnames.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core/Data/surnames.lst -------------------------------------------------------------------------------- /zxcvbn-core/Data/us_tv_and_film.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core/Data/us_tv_and_film.lst -------------------------------------------------------------------------------- /zxcvbn-core/DefaultMatcherFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core/DefaultMatcherFactory.cs -------------------------------------------------------------------------------- /zxcvbn-core/Dictionaries/english.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core/Dictionaries/english.lst -------------------------------------------------------------------------------- /zxcvbn-core/Dictionaries/female_names.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core/Dictionaries/female_names.lst -------------------------------------------------------------------------------- /zxcvbn-core/Dictionaries/male_names.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core/Dictionaries/male_names.lst -------------------------------------------------------------------------------- /zxcvbn-core/Dictionaries/passwords.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core/Dictionaries/passwords.lst -------------------------------------------------------------------------------- /zxcvbn-core/Dictionaries/surnames.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core/Dictionaries/surnames.lst -------------------------------------------------------------------------------- /zxcvbn-core/Dictionaries/us_tv_and_film.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core/Dictionaries/us_tv_and_film.lst -------------------------------------------------------------------------------- /zxcvbn-core/Feedback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core/Feedback.cs -------------------------------------------------------------------------------- /zxcvbn-core/FeedbackItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core/FeedbackItem.cs -------------------------------------------------------------------------------- /zxcvbn-core/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core/GlobalSuppressions.cs -------------------------------------------------------------------------------- /zxcvbn-core/Matcher/DateMatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core/Matcher/DateMatcher.cs -------------------------------------------------------------------------------- /zxcvbn-core/Matcher/DictionaryMatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core/Matcher/DictionaryMatcher.cs -------------------------------------------------------------------------------- /zxcvbn-core/Matcher/IMatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core/Matcher/IMatcher.cs -------------------------------------------------------------------------------- /zxcvbn-core/Matcher/L33tMatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core/Matcher/L33tMatcher.cs -------------------------------------------------------------------------------- /zxcvbn-core/Matcher/LooseDate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core/Matcher/LooseDate.cs -------------------------------------------------------------------------------- /zxcvbn-core/Matcher/Matches/BruteForceMatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core/Matcher/Matches/BruteForceMatch.cs -------------------------------------------------------------------------------- /zxcvbn-core/Matcher/Matches/DateMatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core/Matcher/Matches/DateMatch.cs -------------------------------------------------------------------------------- /zxcvbn-core/Matcher/Matches/DictionaryMatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core/Matcher/Matches/DictionaryMatch.cs -------------------------------------------------------------------------------- /zxcvbn-core/Matcher/Matches/Match.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core/Matcher/Matches/Match.cs -------------------------------------------------------------------------------- /zxcvbn-core/Matcher/Matches/RegexMatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core/Matcher/Matches/RegexMatch.cs -------------------------------------------------------------------------------- /zxcvbn-core/Matcher/Matches/RepeatMatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core/Matcher/Matches/RepeatMatch.cs -------------------------------------------------------------------------------- /zxcvbn-core/Matcher/Matches/SequenceMatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core/Matcher/Matches/SequenceMatch.cs -------------------------------------------------------------------------------- /zxcvbn-core/Matcher/Matches/SpatialMatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core/Matcher/Matches/SpatialMatch.cs -------------------------------------------------------------------------------- /zxcvbn-core/Matcher/Point.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core/Matcher/Point.cs -------------------------------------------------------------------------------- /zxcvbn-core/Matcher/RegexMatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core/Matcher/RegexMatcher.cs -------------------------------------------------------------------------------- /zxcvbn-core/Matcher/RepeatMatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core/Matcher/RepeatMatcher.cs -------------------------------------------------------------------------------- /zxcvbn-core/Matcher/ReverseDictionaryMatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core/Matcher/ReverseDictionaryMatcher.cs -------------------------------------------------------------------------------- /zxcvbn-core/Matcher/SequenceMatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core/Matcher/SequenceMatcher.cs -------------------------------------------------------------------------------- /zxcvbn-core/Matcher/SpatialGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core/Matcher/SpatialGraph.cs -------------------------------------------------------------------------------- /zxcvbn-core/Matcher/SpatialMatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core/Matcher/SpatialMatcher.cs -------------------------------------------------------------------------------- /zxcvbn-core/MostGuessableMatchResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core/MostGuessableMatchResult.cs -------------------------------------------------------------------------------- /zxcvbn-core/OptimalValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core/OptimalValues.cs -------------------------------------------------------------------------------- /zxcvbn-core/PasswordScoring.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core/PasswordScoring.cs -------------------------------------------------------------------------------- /zxcvbn-core/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /zxcvbn-core/Result.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core/Result.cs -------------------------------------------------------------------------------- /zxcvbn-core/Scoring/BruteForceGuessesCalculator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core/Scoring/BruteForceGuessesCalculator.cs -------------------------------------------------------------------------------- /zxcvbn-core/Scoring/DateGuessesCalculator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core/Scoring/DateGuessesCalculator.cs -------------------------------------------------------------------------------- /zxcvbn-core/Scoring/DictionaryGuessesCalculator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core/Scoring/DictionaryGuessesCalculator.cs -------------------------------------------------------------------------------- /zxcvbn-core/Scoring/RegexGuessesCalculator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core/Scoring/RegexGuessesCalculator.cs -------------------------------------------------------------------------------- /zxcvbn-core/Scoring/RepeatGuessesCalculator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core/Scoring/RepeatGuessesCalculator.cs -------------------------------------------------------------------------------- /zxcvbn-core/Scoring/SequenceGuessesCalculator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core/Scoring/SequenceGuessesCalculator.cs -------------------------------------------------------------------------------- /zxcvbn-core/Scoring/SpatialGuessesCalculator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core/Scoring/SpatialGuessesCalculator.cs -------------------------------------------------------------------------------- /zxcvbn-core/TimeEstimates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core/TimeEstimates.cs -------------------------------------------------------------------------------- /zxcvbn-core/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core/Utility.cs -------------------------------------------------------------------------------- /zxcvbn-core/zxcvbn-core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core/zxcvbn-core.csproj -------------------------------------------------------------------------------- /zxcvbn-core/zxcvbn-core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core/zxcvbn-core.xml -------------------------------------------------------------------------------- /zxcvbn-core/zxcvbn-strong-name-key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-core/zxcvbn-strong-name-key.snk -------------------------------------------------------------------------------- /zxcvbn-cs.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichards57/zxcvbn-cs/HEAD/zxcvbn-cs.sln --------------------------------------------------------------------------------