1234567891011121314151617181920212223 |
- <?php
- namespace JinDouYun\Controller;
- class SHA1
- {
- public function getSHA1($token, $timestamp, $nonce, $encrypt_msg)
- {
- try {
- $array = array($encrypt_msg, $token, $timestamp, $nonce);
- sort($array, SORT_STRING);
- $str = implode($array);
- return array(ErrorCode::$OK, sha1($str));
- } catch (\Exception $e) {
- print $e . "\n";
- return array(ErrorCode::$ComputeSignatureError, null);
- }
- }
- }
- ?>
|