vladzur/cifrador
最新稳定版本:1.3.0
Composer 安装命令:
composer require vladzur/cifrador
包简介
Encrypt and decrypt strings using AES
README 文档
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;
?>
统计信息
- 总下载量: 22
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: GPL
- 更新时间: 2015-01-09