2017 © Pedro Peláez
 

library blowfish-encrypter

image

powerlinks/blowfish-encrypter

  • Thursday, October 29, 2015
  • by powerlinks
  • Repository
  • 7 Watchers
  • 0 Stars
  • 2,645 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 3 % Grown

The README.md

Blowfish Encrypter

This class is used to encrypt and decrypt strings using the blowfish standard., (*1)

Composer

composer require powerlinks/blowfish-encrypter
{
    "require": {
        "powerlinks/blowfish-encrypter": "dev-master"
    }
}

Usage

use PowerLinks\Encrypter\BlowfishEncrypter;

$encrypter = new BlowfishEncrypter('passphrase');
$sentence = 'my sentence';

$encrypted = $encrypter->encryptToString($sentence);

$sentenceAgain = $encrypter->decryptFromString($encrypted);

The Versions

29/10 2015

dev-master

9999999-dev http://www.powerlinks.com/

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

The Development Requires

blowfish encrypter powerlinks