katoni/php-ffx
最新稳定版本:v1.0
Composer 安装命令:
composer require katoni/php-ffx
包简介
A pure PHP implementation of Format-preserving, Feistel-based encryption (FFX).
README 文档
README
A pure PHP implementation of Format-preserving, Feistel-based encryption (FFX).
Ported from emulbreh/pyffx.
Usage
$key = 'hello'; $alphabet = 'abcdefghijklmnopqrstuvwxyz'; $ffx = new \Katoni\FFX\Codecs\Text($key, $alphabet, 10); $ffx->encrypt('encryption'); // string: jrsunxgmbq $ffx = new \Katoni\FFX\Codecs\Integer($key, 4); $ffx->encrypt('1234'); // int: 1867
统计信息
- 总下载量: 30.54k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 6
- 点击次数: 1
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2020-08-17