2017 © Pedro Peláez
 

library icecrypt

IceCrypt PHP Encryption

image

ammarfaizi2/icecrypt

IceCrypt PHP Encryption

  • Sunday, December 17, 2017
  • by ammarfaizi2
  • Repository
  • 1 Watchers
  • 4 Stars
  • 7 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

IceCrypt PHP Encryption

A tool for secrets management and encryption as a service., (*1)

Installation

composer require ammarfaizi2/icecrypt, (*2)

Example

<?php

require __DIR__ . "/vendor/autoload.php";

use IceCrypt\IceCrypt;

$string = "Hello World!";
$key    = "secret12345";

// encrypt
$encrypted_string = IceCrypt::encrypt($string, $key);
echo "Encrypted string : " . $encrypted_string . "\n";

// decrypt
$decrypted_string = IceCrypt::decrypt($encrypted_string, $key);
echo "Decrypted string : " . $decrypted_string . "\n";

LICENSE

Licensed under the MIT License, (*3)

The Versions

17/12 2017

dev-master

9999999-dev

IceCrypt PHP Encryption

  Sources   Download

MIT

The Development Requires

by Ammar Faizi

17/12 2017

0.0.1

0.0.1.0

IceCrypt PHP Encryption

  Sources   Download

MIT

The Development Requires

by Ammar Faizi