Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: bitbeans/zxcvbn-cs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: GuidoNeele/zxcvbn-cs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Able to merge. These branches can be automatically merged.
  • 14 commits
  • 14 files changed
  • 3 contributors

Commits on Sep 25, 2015

  1. Merge pull request #1 from bitbeans/master

    Added the possibility to choose a language
    mickford committed Sep 25, 2015
    Copy the full SHA
    be0c4f0 View commit details

Commits on Apr 11, 2016

  1. Added NuGet

    Christoph Enzmann committed Apr 11, 2016
    Copy the full SHA
    18f2869 View commit details

Commits on Apr 12, 2016

  1. Merge pull request #3 from dusk0r/master

    Added NuGet nuspec file
    mickford committed Apr 12, 2016
    Copy the full SHA
    0cb5f5d View commit details

Commits on Jan 26, 2017

  1. Update english.lst

    Update english.lst with latest list from original zxcvbn library
    chevalinator authored Jan 26, 2017
    Copy the full SHA
    606bfe0 View commit details
  2. Update female_names.lst

    Update list from original zxcvbn library
    chevalinator authored Jan 26, 2017
    Copy the full SHA
    9a84ae6 View commit details
  3. Update male_names.lst

    Update list from original zxcvbn repo
    chevalinator authored Jan 26, 2017
    Copy the full SHA
    e1a12a1 View commit details
  4. Update passwords.lst

    Update list from original zxcvbn repo
    chevalinator authored Jan 26, 2017
    Copy the full SHA
    50f4f2b View commit details
  5. Update surnames.lst

    Update file from original zxcvbn repo
    chevalinator authored Jan 26, 2017
    Copy the full SHA
    76c90a4 View commit details
  6. Added suggestion and warning unit tests

    Add Unit tests for suggestion and warnings and updated expected entropy because of password list changes
    chevalinator authored Jan 26, 2017
    Copy the full SHA
    385a7b6 View commit details
  7. Copy the full SHA
    717027c View commit details
  8. Copy the full SHA
    ac29d74 View commit details
  9. Copy the full SHA
    ba9184f View commit details
  10. Copy the full SHA
    02d56d8 View commit details

Commits on Jul 14, 2017

  1. Merge pull request #7 from mathieuchevalier/master

    Added suggestion and warning feedback available in the original zxcvbn repo
    mickford authored Jul 14, 2017
    Copy the full SHA
    4427243 View commit details
Showing with 196,271 additions and 39,136 deletions.
  1. +99,799 −32,344 Dictionaries/english.lst
  2. +460 −0 Dictionaries/female_names.lst
  3. +215 −0 Dictionaries/male_names.lst
  4. +46,626 −6,744 Dictionaries/passwords.lst
  5. +48,216 −0 Dictionaries/surnames.lst
  6. +9 −5 PasswordScoring.cs
  7. +179 −2 Result.cs
  8. +413 −1 Utility.cs
  9. +157 −2 Zxcvbn.cs
  10. BIN nuget/nuget.exe
  11. +2 −2 zxcvbn-cs.csproj
  12. +17 −0 zxcvbn-cs.nuspec
  13. +3 −1 zxcvbn-cs.sln
  14. +175 −35 zxcvbn-test/ZxcvbnTest.cs
Loading