PHP Classes

Cifrador: Encrypt and decrypt data with mcrypt

Recommend this page to a friend!
     
  Info   View files Files   Install with Composer Install with Composer   Download Download   Reputation   Support forum   Blog    
Ratings Unique User Downloads Download Rankings
Not enough user ratingsTotal: 410 All time: 6,490 This week: 54Up
Version License PHP version Categories
cifrador 0.1GNU General Publi...4Cryptography
Description 

Author

This class can encrypt and decrypt data with mcrypt.

It takes a string of data and encrypts it using Rijndael 256 algorithm. The resulting data is returned encoded with base 64 algorithm.

The class can also do the opposite, i.e. decode previously encrypted data encoded with base64 algorithm and decrypts the result to return the original data.

Picture of Vladimir Zurita
Name: Vladimir Zurita <contact>
Classes: 3 packages by
Country: Chile Chile
Age: 50
All time rank: 20878 in Chile Chile
Week rank: 200 Up2 in Chile Chile Up
Innovation award
Innovation award
Nominee: 1x

Winner: 1x

Details

Cifrador

Encrypt and decrypt strings using AES

Usage

<?php
$Cifrador = new Cifrador();

//Encrypt text
$texto_cifrado = $Cifrador->cifrar("Este texto serĂ¡ cifrado", "m1p4ssw0rd");
echo $texto_cifrado;

//Decrypt text
$texto = $Cifrador->descifrar($texto_cifrado, "m1p4ssw0rd");
echo $texto;
?>


  Files folder image Files (5)  
File Role Description
Plain text file Cifrador.php Class Rebuild
Plain text file cifrador.php Class Main class
Accessible without login Plain text file composer.json Data Auxiliary data
Accessible without login Plain text file README.md Doc. Documentation
Accessible without login Plain text file VERSION Doc. Documentation

The PHP Classes site has supported package installation using the Composer tool since 2013, as you may verify by reading this instructions page.
Install with Composer Install with Composer
 Version Control Unique User Downloads Download Rankings  
 80%
Total:410
This week:0
All time:6,490
This week:54Up