首页 > php教程 > php手册 > PHP使用DES进行加密与解密的方法

PHP使用DES进行加密与解密的方法

WBOY
发布: 2016-06-13 11:33:06
原创
757 人浏览过

   代码如下:

  //$input - stuff to decrypt

  //$key - the secret key to use

  function do_mencrypt($input, $key)

  {

  $input = str_replace(""n", "", $input);

  $input = str_replace(""t", "", $input);

  $input = str_replace(""r", "", $input);

  $key = substr(md5($key), 0, 24);

  $td = mcrypt_module_open('tripledes', '', 'ecb', '');

  $iv = mcrypt_create_iv(mcrypt_enc_get_iv_size($td), MCRYPT_RAND);

  mcrypt_generic_init($td, $key, $iv);

  $encrypted_data = mcrypt_generic($td, $input);

  mcrypt_generic_deinit($td);

  mcrypt_module_close($td);

  return trim(chop(base64_encode($encrypted_data)));

  }

  //$input - stuff to decrypt

  //$key - the secret key to use

  function do_mdecrypt($input, $key)

  {

  $input = str_replace(""n", "", $input);

  $input = str_replace(""t", "", $input);

  $input = str_replace(""r", "", $input);

  $input = trim(chop(base64_decode($input)));

  $td = mcrypt_module_open('tripledes', '', 'ecb', '');

  $key = substr(md5($key), 0, 24);

  $iv = mcrypt_create_iv(mcrypt_enc_get_iv_size($td), MCRYPT_RAND);

  mcrypt_generic_init($td, $key, $iv);

  $decrypted_data = mdecrypt_generic($td, $input);

  mcrypt_generic_deinit($td);

  mcrypt_module_close($td);

  return trim(chop($decrypted_data));

  }

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门推荐
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板