├── .phpunit-watcher.yml ├── .styleci.yml ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer-require-checker.json ├── composer.json ├── infection.json.dist ├── psalm.xml ├── rector.php ├── src ├── AuthenticationException.php ├── Crypt.php ├── DataIsTamperedException.php ├── Mac.php ├── PasswordHasher.php ├── Random.php └── TokenMask.php └── tools ├── .gitignore ├── infection └── composer.json └── psalm └── composer.json /.phpunit-watcher.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/security/HEAD/.phpunit-watcher.yml -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/security/HEAD/.styleci.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/security/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/security/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/security/HEAD/README.md -------------------------------------------------------------------------------- /composer-require-checker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/security/HEAD/composer-require-checker.json -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/security/HEAD/composer.json -------------------------------------------------------------------------------- /infection.json.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/security/HEAD/infection.json.dist -------------------------------------------------------------------------------- /psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/security/HEAD/psalm.xml -------------------------------------------------------------------------------- /rector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/security/HEAD/rector.php -------------------------------------------------------------------------------- /src/AuthenticationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/security/HEAD/src/AuthenticationException.php -------------------------------------------------------------------------------- /src/Crypt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/security/HEAD/src/Crypt.php -------------------------------------------------------------------------------- /src/DataIsTamperedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/security/HEAD/src/DataIsTamperedException.php -------------------------------------------------------------------------------- /src/Mac.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/security/HEAD/src/Mac.php -------------------------------------------------------------------------------- /src/PasswordHasher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/security/HEAD/src/PasswordHasher.php -------------------------------------------------------------------------------- /src/Random.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/security/HEAD/src/Random.php -------------------------------------------------------------------------------- /src/TokenMask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/security/HEAD/src/TokenMask.php -------------------------------------------------------------------------------- /tools/.gitignore: -------------------------------------------------------------------------------- 1 | /*/vendor 2 | /*/composer.lock 3 | -------------------------------------------------------------------------------- /tools/infection/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/security/HEAD/tools/infection/composer.json -------------------------------------------------------------------------------- /tools/psalm/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/security/HEAD/tools/psalm/composer.json --------------------------------------------------------------------------------