• php加密类


    1.需求

    了解php加密类的使用

    2.例子

    参考ci的3.1.2的新版加密类,一个不传参,用默认加密算法,加密模式的例子

         //0.加载加密类
            $this->load->library('encryption');
    
            //1设置密钥,不能丢失!,并配置到配置文件中,要使用hex2bin和bin2hex
            $this->encryption->create_key(16);
    
    
            //2.使用加密和解密
            $plain_text = 'This is a plain-text message!';
            $ciphertext = $this->encryption->encrypt($plain_text);
            echo $this->encryption->decrypt($ciphertext);
    
            //3.不要对密码使用这种加密方式,密码的加密应该是单向的,无法解密的。

    参考资料

    http://codeigniter.org.cn/user_guide/libraries/encryption.html#custom-parameters

  • 相关阅读:
    MFC列表控件更改一行的字体颜色
    MFC之sqlite
    MFC笔记10
    MFC---关于string.h相关函数
    MFC笔记8
    MFC笔记7
    MFC笔记6
    MFC笔记5
    MFC笔记4
    MFC笔记3
  • 原文地址:https://www.cnblogs.com/norm/p/6259408.html
Copyright © 2020-2023  润新知