zendframework / zend-crypt
3.3.1
2019-05-14 20:19 UTC
Requires
- php: ^5.6 || ^7.0
- ext-mbstring: *
- container-interop/container-interop: ^1.2
- zendframework/zend-math: ^3.0
- zendframework/zend-stdlib: ^2.7.7 || ^3.1
Requires (Dev)
- phpunit/phpunit: ^5.7.27 || ^6.5.8 || ^7.1.2
- zendframework/zend-coding-standard: ~1.0.0
Suggests
- ext-openssl: Required for most features of Zend\Crypt
- dev-master / 3.3.x-dev
- dev-develop / 3.4.x-dev
- 3.3.1
- 3.3.0
- 3.2.1
- 3.2.0
- 3.1.0
- 3.0.0
- 2.6.0
- 2.5.2
- 2.5.1
- 2.5.0
- 2.4.13
- 2.4.12
- 2.4.11
- 2.4.10
- 2.4.9
- 2.4.8
- 2.4.7
- 2.4.6
- 2.4.5
- 2.4.4
- 2.4.3
- 2.4.2
- 2.4.1
- 2.4.0
- 2.4.0rc7
- 2.4.0rc6
- 2.4.0rc5
- 2.4.0rc4
- 2.4.0rc3
- 2.4.0rc2
- 2.4.0rc1
- 2.3.9
- 2.3.8
- 2.3.7
- 2.3.6
- 2.3.5
- 2.3.4
- 2.3.3
- 2.3.2
- 2.3.1
- 2.3.0
- 2.2.10
- 2.2.9
- 2.2.8
- 2.2.7
- 2.2.6
- 2.2.5
- 2.2.4
- 2.2.3
- 2.2.2
- 2.2.1
- 2.2.0
- 2.2.0rc3
- 2.2.0rc2
- 2.2.0rc1
- 2.1.6
- 2.1.5
- 2.1.4
- 2.1.3
- 2.1.2
- 2.1.1
- 2.1.0
- 2.0.8
- 2.0.7
- 2.0.6
- 2.0.5
- 2.0.4
- 2.0.3
- dev-legacy
This package is auto-updated.
Last update: 2020-01-29 14:58:14 UTC
README
仓库弃用 2019-12-31
此仓库已迁移至 laminas/laminas-crypt。
Zend\Crypt
提供了一些加密工具的支持。一些可用功能包括
- 使用对称加密算法进行加密后再进行认证(认证步骤使用 HMAC 提供);
- 使用对称和公钥算法(例如 RSA 算法)进行加密/解密;
- 使用混合模式(类似 OpenPGP)进行加密/解密;
- 使用公钥算法(例如 RSA 算法)生成数字签名;
- 使用 Diffie-Hellman 方法进行密钥交换;
- 密钥推导函数(例如使用 PBKDF2 算法);
- 安全密码散列(例如使用 Bcrypt 算法);
- 生成哈希值;
- 生成 HMAC 值;
此组件的主要目的是提供一个简单且安全的方法来在 PHP 中保护和验证敏感数据。