├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json ├── config └── encryptable.php └── src ├── DBEncrypter.php ├── Encryptable.php ├── EncryptableServiceProvider.php ├── Encrypter.php ├── Encryption.php ├── Exceptions ├── MissingEncryptionCipherException.php ├── MissingEncryptionKeyException.php ├── SerializationException.php └── UnserializationException.php ├── PHPEncrypter.php ├── Rules ├── ExistsEncrypted.php └── UniqueEncrypted.php └── Utils └── Serializer.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maize-tech/laravel-encryptable/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maize-tech/laravel-encryptable/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maize-tech/laravel-encryptable/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maize-tech/laravel-encryptable/HEAD/composer.json -------------------------------------------------------------------------------- /config/encryptable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maize-tech/laravel-encryptable/HEAD/config/encryptable.php -------------------------------------------------------------------------------- /src/DBEncrypter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maize-tech/laravel-encryptable/HEAD/src/DBEncrypter.php -------------------------------------------------------------------------------- /src/Encryptable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maize-tech/laravel-encryptable/HEAD/src/Encryptable.php -------------------------------------------------------------------------------- /src/EncryptableServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maize-tech/laravel-encryptable/HEAD/src/EncryptableServiceProvider.php -------------------------------------------------------------------------------- /src/Encrypter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maize-tech/laravel-encryptable/HEAD/src/Encrypter.php -------------------------------------------------------------------------------- /src/Encryption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maize-tech/laravel-encryptable/HEAD/src/Encryption.php -------------------------------------------------------------------------------- /src/Exceptions/MissingEncryptionCipherException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maize-tech/laravel-encryptable/HEAD/src/Exceptions/MissingEncryptionCipherException.php -------------------------------------------------------------------------------- /src/Exceptions/MissingEncryptionKeyException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maize-tech/laravel-encryptable/HEAD/src/Exceptions/MissingEncryptionKeyException.php -------------------------------------------------------------------------------- /src/Exceptions/SerializationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maize-tech/laravel-encryptable/HEAD/src/Exceptions/SerializationException.php -------------------------------------------------------------------------------- /src/Exceptions/UnserializationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maize-tech/laravel-encryptable/HEAD/src/Exceptions/UnserializationException.php -------------------------------------------------------------------------------- /src/PHPEncrypter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maize-tech/laravel-encryptable/HEAD/src/PHPEncrypter.php -------------------------------------------------------------------------------- /src/Rules/ExistsEncrypted.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maize-tech/laravel-encryptable/HEAD/src/Rules/ExistsEncrypted.php -------------------------------------------------------------------------------- /src/Rules/UniqueEncrypted.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maize-tech/laravel-encryptable/HEAD/src/Rules/UniqueEncrypted.php -------------------------------------------------------------------------------- /src/Utils/Serializer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maize-tech/laravel-encryptable/HEAD/src/Utils/Serializer.php --------------------------------------------------------------------------------