scrothers / libsodium-laravel
Laravel bindings for libsodium in the encrypter and hasher
Requires
- php: >=5.5.9
- ext-libsodium: *
- illuminate/contracts: 5.1.*|5.2.*
- illuminate/encryption: 5.1.*|5.2.*
Requires (Dev)
- nesbot/carbon: ~1.14
- phpunit/phpunit: ~4.0
This package is not auto-updated.
Last update: 2024-10-26 18:54:41 UTC
README
This library is meant to be a fairly expansive encryption replacement to Laravel's built in methods. The goals is that by default it will replace the encryption and the hashing mechanisms of Laravel with compatible methods powered by libsodium.
How to Install
First thing you need to do is install the components you want to replace in Laravel in your app.cfg
file from your config directory.
Sodium Encrypter Install
In app.cfg
replace Illuminate\Encryption\EncryptionServiceProvider::class
with scrothers\laravelsodium\Providers\EncryptionProvider::class
.
Sodium Hasher Install
In app.cfg
replace Illuminate\Hashing\HashServiceProvider::class
with scrothers\laravelsodium\Providers\HashProvider::class
.
About Sodium
The original Sodium project can be located here, the about Sodium is obtained from the readme in the source repository.
Sodium is a new, easy-to-use software library for encryption, decryption, signatures, password hashing and more.
It is a portable, cross-compilable, installable, packageable fork of NaCl, with a compatible API, and an extended API to improve usability even further.
Its goal is to provide all of the core operations needed to build higher-level cryptographic tools.
Sodium supports a variety of compilers and operating systems, including Windows (with MingW or Visual Studio, x86 and x64), iOS and Android.