当前位置: 首页>>代码示例>>PHP>>正文


PHP passport_key函数代码示例

本文整理汇总了PHP中passport_key函数的典型用法代码示例。如果您正苦于以下问题:PHP passport_key函数的具体用法?PHP passport_key怎么用?PHP passport_key使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了passport_key函数的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: passport_decrypt

function passport_decrypt($txt, $key)
{
    $txt = passport_key(base64_decode($txt), $key);
    $tmp = '';
    for ($i = 0; $i < strlen($txt); $i++) {
        $md5 = $txt[$i];
        $tmp .= $txt[++$i] ^ $md5;
    }
    return $tmp;
}
开发者ID:qinquanxing,项目名称:huaxia,代码行数:10,代码来源:fun.php

示例2: _passport_decrypt

function _passport_decrypt($txt)
{
    $key = 'dfsy74yt9fayp34htoayw98rth4oeuto8p4e';
    $txt = passport_key(base64_decode($txt), $key);
    $tmp = '';
    for ($i = 0; $i < strlen($txt); $i++) {
        $md5 = $txt[$i];
        $tmp .= $txt[++$i] ^ $md5;
    }
    return $tmp;
}
开发者ID:azenusgogo,项目名称:zozo_prac,代码行数:11,代码来源:qixi.php

示例3: passport_encrypt

function passport_encrypt($txt, $key)
{
    srand((double) microtime() * 1000000);
    $encrypt_key = md5(rand(0, 32000));
    $ctr = 0;
    $tmp = '';
    for ($i = 0; $i < strlen($txt); $i++) {
        $ctr = $ctr == strlen($encrypt_key) ? 0 : $ctr;
        $tmp .= $encrypt_key[$ctr] . ($txt[$i] ^ $encrypt_key[$ctr++]);
    }
    return base64_encode(passport_key($tmp, $key));
}
开发者ID:BGCX262,项目名称:zyyhong-svn-to-git,代码行数:12,代码来源:relateshopex.php

示例4: saedisk_decrypt

 function saedisk_decrypt($txt, $key = '<yiis>')
 {
     $dir = $this->get_sae_root();
     $txt = $dir . $txt;
     return $txt;
     $txt = passport_key(base64_decode($txt), $key);
     $tmp = '';
     for ($i = 0; $i < strlen($txt); $i++) {
         $md5 = $txt[$i];
         $tmp .= $txt[++$i] ^ $md5;
     }
     return $tmp;
 }
开发者ID:Git-Host,项目名称:game-server,代码行数:13,代码来源:SAECommon.php

示例5: passport_decrypt

/**
* Passport 解密函数
*
* @param		string		加密后的字串
* @param		string		私有密匙(用于解密和加密)
*
* @return	string		字串经过私有密匙解密后的结果
*/
function passport_decrypt($txt, $key)
{
    // $txt 的结果为加密后的字串经过 base64 解码,然后与私有密匙一起,
    // 经过 passport_key() 函数处理后的返回值
    $txt = passport_key(base64_decode($txt), $key);
    // 变量初始化
    $tmp = '';
    // for 循环,$i 为从 0 开始,到小于 $txt 字串长度的整数
    for ($i = 0; $i < strlen($txt); $i++) {
        // $tmp 字串在末尾增加一位,其内容为 $txt 的第 $i 位,
        // 与 $txt 的第 $i + 1 位取异或。然后 $i = $i + 1
        $tmp .= $txt[$i] ^ $txt[++$i];
    }
    // 返回 $tmp 的值作为结果
    return $tmp;
}
开发者ID:polarlight1989,项目名称:08cms,代码行数:24,代码来源:discuz.php

示例6: passport_decrypt

 /**
  * 字符串解密函数
  * @param string $txt
  * @param string $key
  * @return string
  */
 function passport_decrypt($txt, $key = 'Mlover-Moerlove-Com-2015')
 {
     $txt = passport_key(base64_decode($txt), $key);
     $tmp = '';
     for ($i = 0; $i < strlen($txt); $i++) {
         if (empty($txt[$i + 1])) {
             return false;
         }
         $md5 = $txt[$i];
         $tmp .= $txt[++$i] ^ $md5;
     }
     return $tmp;
 }
开发者ID:hehui199135,项目名称:TUtils,代码行数:19,代码来源:MHelper.class.php


注:本文中的passport_key函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。