2017 © Pedro Peláez
 

library libsodium-laravel

Laravel bindings for libsodium in the encrypter and hasher

image

scrothers/libsodium-laravel

Laravel bindings for libsodium in the encrypter and hasher

  • Friday, March 4, 2016
  • by scrothers
  • Repository
  • 4 Watchers
  • 18 Stars
  • 5 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 3 Forks
  • 2 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

Libsodium for Laravel

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., (*1)

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., (*2)

Sodium Encrypter Install

In app.cfg replace Illuminate\Encryption\EncryptionServiceProvider::class with scrothers\laravelsodium\Providers\EncryptionProvider::class., (*3)

Sodium Hasher Install

In app.cfg replace Illuminate\Hashing\HashServiceProvider::class with scrothers\laravelsodium\Providers\HashProvider::class., (*4)

About Sodium

The original Sodium project can be located here, the about Sodium is obtained from the readme in the source repository., (*5)

Sodium is a new, easy-to-use software library for encryption, decryption, signatures, password hashing and more., (*6)

It is a portable, cross-compilable, installable, packageable fork of NaCl, with a compatible API, and an extended API to improve usability even further., (*7)

Its goal is to provide all of the core operations needed to build higher-level cryptographic tools., (*8)

Sodium supports a variety of compilers and operating systems, including Windows (with MingW or Visual Studio, x86 and x64), iOS and Android., (*9)

The Versions

04/03 2016

dev-master

9999999-dev https://github.com/scrothers/libsodium-laravel

Laravel bindings for libsodium in the encrypter and hasher

  Sources   Download

MIT

The Requires

 

The Development Requires