├── .github_changelog_generator ├── .gitignore ├── LICENSE ├── README.md ├── codeception.dist.yml ├── composer.json ├── src ├── MDFiveValidator.php ├── Manager.php ├── ManagerFactory.php ├── PasswordLock.php ├── PhpassValidator.php ├── Validator.php ├── ValidatorInterface.php └── pluggable.php ├── tests ├── _data │ ├── .gitkeep │ └── dump.sql ├── _support │ ├── Helper │ │ └── Wpunit.php │ └── WpunitTester.php ├── wpunit.suite.dist.yml └── wpunit │ ├── MDFiveValidatorTest.php │ ├── ManagerFactoryTest.php │ ├── PasswordLockTest.php │ ├── PhpassValidatorTest.php │ ├── ValidatorTest.php │ ├── WPCheckPasswordTest.php │ ├── WPHashPasswordTest.php │ └── WPSetPasswordTest.php └── wp-password-argon-two.php /.github_changelog_generator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/wp-password-argon-two/HEAD/.github_changelog_generator -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/wp-password-argon-two/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/wp-password-argon-two/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/wp-password-argon-two/HEAD/README.md -------------------------------------------------------------------------------- /codeception.dist.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/wp-password-argon-two/HEAD/codeception.dist.yml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/wp-password-argon-two/HEAD/composer.json -------------------------------------------------------------------------------- /src/MDFiveValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/wp-password-argon-two/HEAD/src/MDFiveValidator.php -------------------------------------------------------------------------------- /src/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/wp-password-argon-two/HEAD/src/Manager.php -------------------------------------------------------------------------------- /src/ManagerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/wp-password-argon-two/HEAD/src/ManagerFactory.php -------------------------------------------------------------------------------- /src/PasswordLock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/wp-password-argon-two/HEAD/src/PasswordLock.php -------------------------------------------------------------------------------- /src/PhpassValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/wp-password-argon-two/HEAD/src/PhpassValidator.php -------------------------------------------------------------------------------- /src/Validator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/wp-password-argon-two/HEAD/src/Validator.php -------------------------------------------------------------------------------- /src/ValidatorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/wp-password-argon-two/HEAD/src/ValidatorInterface.php -------------------------------------------------------------------------------- /src/pluggable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/wp-password-argon-two/HEAD/src/pluggable.php -------------------------------------------------------------------------------- /tests/_data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/_data/dump.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/wp-password-argon-two/HEAD/tests/_data/dump.sql -------------------------------------------------------------------------------- /tests/_support/Helper/Wpunit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/wp-password-argon-two/HEAD/tests/_support/Helper/Wpunit.php -------------------------------------------------------------------------------- /tests/_support/WpunitTester.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/wp-password-argon-two/HEAD/tests/_support/WpunitTester.php -------------------------------------------------------------------------------- /tests/wpunit.suite.dist.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/wp-password-argon-two/HEAD/tests/wpunit.suite.dist.yml -------------------------------------------------------------------------------- /tests/wpunit/MDFiveValidatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/wp-password-argon-two/HEAD/tests/wpunit/MDFiveValidatorTest.php -------------------------------------------------------------------------------- /tests/wpunit/ManagerFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/wp-password-argon-two/HEAD/tests/wpunit/ManagerFactoryTest.php -------------------------------------------------------------------------------- /tests/wpunit/PasswordLockTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/wp-password-argon-two/HEAD/tests/wpunit/PasswordLockTest.php -------------------------------------------------------------------------------- /tests/wpunit/PhpassValidatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/wp-password-argon-two/HEAD/tests/wpunit/PhpassValidatorTest.php -------------------------------------------------------------------------------- /tests/wpunit/ValidatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/wp-password-argon-two/HEAD/tests/wpunit/ValidatorTest.php -------------------------------------------------------------------------------- /tests/wpunit/WPCheckPasswordTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/wp-password-argon-two/HEAD/tests/wpunit/WPCheckPasswordTest.php -------------------------------------------------------------------------------- /tests/wpunit/WPHashPasswordTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/wp-password-argon-two/HEAD/tests/wpunit/WPHashPasswordTest.php -------------------------------------------------------------------------------- /tests/wpunit/WPSetPasswordTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/wp-password-argon-two/HEAD/tests/wpunit/WPSetPasswordTest.php -------------------------------------------------------------------------------- /wp-password-argon-two.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/wp-password-argon-two/HEAD/wp-password-argon-two.php --------------------------------------------------------------------------------