├── .gitignore ├── LICENSE.txt ├── composer.json ├── config └── hashed-passport.php ├── database └── migrations │ └── 2018_03_30_182458_oauth_clients_secret_change_varchar_length.php ├── phpunit.xml.dist ├── readme.md ├── routes └── api.php ├── src ├── Commands │ ├── Install.php │ └── Uninstall.php ├── HashedPassport.php ├── HashedPassportServiceProvider.php ├── Middleware │ └── DecodeHashedClientIdOnRequest.php ├── Observers │ └── ClientObserver.php └── Traits │ ├── HandlesEncryptedSecrets.php │ └── HashesIds.php └── tests ├── EncryptionTest.php ├── HashingTest.php └── TestCase.php /.gitignore: -------------------------------------------------------------------------------- 1 | /composer.lock 2 | /vendor 3 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssmulders/hashed-passport/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssmulders/hashed-passport/HEAD/composer.json -------------------------------------------------------------------------------- /config/hashed-passport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssmulders/hashed-passport/HEAD/config/hashed-passport.php -------------------------------------------------------------------------------- /database/migrations/2018_03_30_182458_oauth_clients_secret_change_varchar_length.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssmulders/hashed-passport/HEAD/database/migrations/2018_03_30_182458_oauth_clients_secret_change_varchar_length.php -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssmulders/hashed-passport/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssmulders/hashed-passport/HEAD/readme.md -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssmulders/hashed-passport/HEAD/routes/api.php -------------------------------------------------------------------------------- /src/Commands/Install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssmulders/hashed-passport/HEAD/src/Commands/Install.php -------------------------------------------------------------------------------- /src/Commands/Uninstall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssmulders/hashed-passport/HEAD/src/Commands/Uninstall.php -------------------------------------------------------------------------------- /src/HashedPassport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssmulders/hashed-passport/HEAD/src/HashedPassport.php -------------------------------------------------------------------------------- /src/HashedPassportServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssmulders/hashed-passport/HEAD/src/HashedPassportServiceProvider.php -------------------------------------------------------------------------------- /src/Middleware/DecodeHashedClientIdOnRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssmulders/hashed-passport/HEAD/src/Middleware/DecodeHashedClientIdOnRequest.php -------------------------------------------------------------------------------- /src/Observers/ClientObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssmulders/hashed-passport/HEAD/src/Observers/ClientObserver.php -------------------------------------------------------------------------------- /src/Traits/HandlesEncryptedSecrets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssmulders/hashed-passport/HEAD/src/Traits/HandlesEncryptedSecrets.php -------------------------------------------------------------------------------- /src/Traits/HashesIds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssmulders/hashed-passport/HEAD/src/Traits/HashesIds.php -------------------------------------------------------------------------------- /tests/EncryptionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssmulders/hashed-passport/HEAD/tests/EncryptionTest.php -------------------------------------------------------------------------------- /tests/HashingTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssmulders/hashed-passport/HEAD/tests/HashingTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssmulders/hashed-passport/HEAD/tests/TestCase.php --------------------------------------------------------------------------------