Encryption/Decryption

Phalcon通过 Phalcon\Crypt 组件提供了加密和解密工具。这个类提供了对PHP openssl 的封装。

默认情况下这个组件使用AES-256-CFB。

You must use a key length corresponding to the current algorithm.For the algorithm used by default it is 32 bytes.

基本使用

这个组件极易使用:

  1. <?php
  2.  
  3. use Phalcon\Crypt;
  4.  
  5. // Create an instance
  6. $crypt = new Crypt();
  7.  
  8. $key = "This is a secret key (32 bytes).";
  9. $text = "This is the text that you want to encrypt.";
  10.  
  11. $encrypted = $crypt->encrypt($text, $key);
  12.  
  13. echo $crypt->decrypt($encrypted, $key);

也可以使用同一实例加密多次:

  1. <?php
  2.  
  3. use Phalcon\Crypt;
  4.  
  5. // 创建实例
  6. $crypt = new Crypt();
  7.  
  8. $texts = [
  9. "my-key" => "This is a secret text",
  10. "other-key" => "This is a very secret",
  11. ];
  12.  
  13. foreach ($texts as $key => $text) {
  14. // 加密
  15. $encrypted = $crypt->encrypt($text, $key);
  16.  
  17. // 解密
  18. echo $crypt->decrypt($encrypted, $key);
  19. }

加密选项(Encryption Options)

下面的选项可以改变加密的行为:

名称 描述
Cipher cipher是libmcrypt提供支持的一种加密算法。 查看这里 here

例子:

  1. <?php
  2.  
  3. use Phalcon\Crypt;
  4.  
  5. // 创建实例
  6. $crypt = new Crypt();
  7.  
  8. // 使用 blowfish
  9. $crypt->setCipher("bf-cbc");
  10.  
  11. $key = "le password";
  12. $text = "This is a secret text";
  13.  
  14. echo $crypt->encrypt($text, $key);

提供 Base64(Base64 Support)

为了方便传输或显示我们可以对加密后的数据进行 base64 转码:

  1. <?php
  2.  
  3. use Phalcon\Crypt;
  4.  
  5. // 创建实例
  6. $crypt = new Crypt();
  7.  
  8. $key = "le password";
  9. $text = "This is a secret text";
  10.  
  11. $encrypt = $crypt->encryptBase64($text, $key);
  12.  
  13. echo $crypt->decryptBase64($encrypt, $key);

配置加密服务(Setting up an Encryption service)

你也可以把加密组件放入服务容器中这样我们可以在应用中的任何一个地方访问这个组件:

  1. <?php
  2.  
  3. use Phalcon\Crypt;
  4.  
  5. $di->set(
  6. 'crypt',
  7. function () {
  8. $crypt = new Crypt();
  9.  
  10. // 设置全局加密密钥
  11. $crypt->setKey(
  12. "%31.1e$i86e$f!8jz"
  13. );
  14.  
  15. return $crypt;
  16. },
  17. true
  18. );

然后,例如,我们可以在控制器中使用它了:

  1. <?php
  2.  
  3. use Phalcon\Mvc\Controller;
  4.  
  5. class SecretsController extends Controller
  6. {
  7. public function saveAction()
  8. {
  9. $secret = new Secrets();
  10.  
  11. $text = $this->request->getPost("text");
  12.  
  13. $secret->content = $this->crypt->encrypt($text);
  14.  
  15. if ($secret->save()) {
  16. $this->flash->success(
  17. "Secret was successfully created!"
  18. );
  19. }
  20. }
  21. }

原文: http://www.myleftstudio.com/reference/crypt.html