An open API service indexing awesome lists of open source software.

https://github.com/quansitech/qs-php-crypt

php加密工具库
https://github.com/quansitech/qs-php-crypt

Last synced: 11 months ago
JSON representation

php加密工具库

Awesome Lists containing this project

README

          

# qs-crypt
php加密

## 安装
```php
composer require quansitech/qs-php-crypt
```

## AES-256-CBC
```php
$key="1234567";
//加密
$plainText = "hello world";
$cipherText = AesCBC::encrypt($plainText, $key);

//解密
$plainText = AesCBC::decrypt($cipherText, $key);
```