本文整理汇总了PHP中Protocol::test方法的典型用法代码示例。如果您正苦于以下问题:PHP Protocol::test方法的具体用法?PHP Protocol::test怎么用?PHP Protocol::test使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Protocol
的用法示例。
在下文中一共展示了Protocol::test方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: array
<?php
/*
Each protcol is given:
- 1st parameter: json decoded array
- 2nd parameter: tempdata that was stored in database last
Each protocol must return an array with properties:
- store: what is stored in database, becomes the symkey on the last call
- send: what is sent back to the user;
*/
class Protocol
{
public static $test;
}
Protocol::$test = array("0" => function ($jdata, $tempdata) {
$hash = hash("sha256", $jdata["secret"]);
$ret = array();
$key = substr($hash, 0, 16);
$ret["store"] = base64_encode($key);
$ret["send"] = base64_encode($key);
return $ret;
});