My favorites | Sign in
Project Logo
                
Show all Featured wiki pages:
Documentation
Links:
Blogs:
Feeds:
People details
Project owners:
  arthur.furlan

What's the Crypt class?

The Crypt class provides an easy and secure way to encrypt/decrypt data with PHP using the Symmetric Cryptography method, a low cost algorithm that works based on the shared keys conecpt.

Current version: 2.2

Using example

<?php
require_once 'Crypt/Crypt.php';

$crypt = new Crypt();
$crypt->Mode = Crypt::MODE_HEX;
$crypt->Key  = '!@#$%&*()_+?:';
$encrypted = $crypt->encrypt('my test');
echo $crypt->decrypt($encrypted);
?>








Hosted by Google Code