vladzur / cifrador
Encrypt and decrypt strings using AES
Installs: 22
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/vladzur/cifrador
Requires
- php: >=5.3.0
This package is not auto-updated.
Last update: 2025-10-11 21:01:59 UTC
README
##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;
?>