WXBizMsgCrypt.php 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. <?php
  2. namespace app\lib\wx_encode;
  3. /**
  4. * 对公众平台发送给公众账号的消息加解密示例代码.
  5. *
  6. * @copyright Copyright (c) 1998-2014 Tencent Inc.
  7. */
  8. /**
  9. * 1.第三方回复加密消息给公众平台;
  10. * 2.第三方收到公众平台发送的消息,验证消息的安全性,并对消息进行解密。
  11. */
  12. class WXBizMsgCrypt
  13. {
  14. private $token;
  15. private $encodingAesKey;
  16. private $appId;
  17. /**
  18. * 构造函数
  19. * @param $token string 公众平台上,开发者设置的token
  20. * @param $encodingAesKey string 公众平台上,开发者设置的EncodingAESKey
  21. * @param $appId string 公众平台的appId
  22. */
  23. public function __construct($token, $encodingAesKey, $appId)
  24. {
  25. $this->token = $token;
  26. $this->encodingAesKey = $encodingAesKey;
  27. $this->appId = $appId;
  28. }
  29. /**
  30. * 将公众平台回复用户的消息加密打包.
  31. * <ol>
  32. * <li>对要发送的消息进行AES-CBC加密</li>
  33. * <li>生成安全签名</li>
  34. * <li>将消息密文和安全签名打包成xml格式</li>
  35. * </ol>
  36. *
  37. * @param $replyMsg string 公众平台待回复用户的消息,xml格式的字符串
  38. * @param $timeStamp string 时间戳,可以自己生成,也可以用URL参数的timestamp
  39. * @param $nonce string 随机串,可以自己生成,也可以用URL参数的nonce
  40. * @param &$encryptMsg string 加密后的可以直接回复用户的密文,包括msg_signature, timestamp, nonce, encrypt的xml格式的字符串,
  41. * 当return返回0时有效
  42. *
  43. * @return int 成功0,失败返回对应的错误码
  44. */
  45. public function encryptMsg($replyMsg, $timeStamp, $nonce, &$encryptMsg)
  46. {
  47. $pc = new Prpcrypt($this->encodingAesKey);
  48. //加密
  49. $array = $pc->encrypt($replyMsg, $this->appId);
  50. $ret = $array[0];
  51. if ($ret != 0) {
  52. return $ret;
  53. }
  54. if ($timeStamp == null) {
  55. $timeStamp = time();
  56. }
  57. $encrypt = $array[1];
  58. //生成安全签名
  59. $sha1 = new SHA1();
  60. $array = $sha1->getSHA1($this->token, $timeStamp, $nonce, $encrypt);
  61. $ret = $array[0];
  62. if ($ret != 0) {
  63. return $ret;
  64. }
  65. $signature = $array[1];
  66. //生成发送的xml
  67. $xmlparse = new XMLParse();
  68. $encryptMsg = $xmlparse->generate($encrypt, $signature, $timeStamp, $nonce);
  69. return ErrorCode::$OK;
  70. }
  71. /**
  72. * 检验消息的真实性,并且获取解密后的明文.
  73. * <ol>
  74. * <li>利用收到的密文生成安全签名,进行签名验证</li>
  75. * <li>若验证通过,则提取xml中的加密消息</li>
  76. * <li>对消息进行解密</li>
  77. * </ol>
  78. *
  79. * @param $msgSignature string 签名串,对应URL参数的msg_signature
  80. * @param $timestamp string 时间戳 对应URL参数的timestamp
  81. * @param $nonce string 随机串,对应URL参数的nonce
  82. * @param $postData string 密文,对应POST请求的数据
  83. * @param &$msg string 解密后的原文,当return返回0时有效
  84. *
  85. * @return int 成功0,失败返回对应的错误码
  86. */
  87. public function decryptMsg($msgSignature, $timestamp = null, $nonce, $postData, &$msg)
  88. {
  89. if (strlen($this->encodingAesKey) != 43) {
  90. return ErrorCode::$IllegalAesKey;
  91. }
  92. $pc = new Prpcrypt($this->encodingAesKey);
  93. //提取密文
  94. $xmlparse = new XMLParse();
  95. $array = $xmlparse->extract($postData);
  96. $ret = $array[0];
  97. if ($ret != 0) {
  98. return $ret;
  99. }
  100. if ($timestamp == null) {
  101. $timestamp = time();
  102. }
  103. $encrypt = $array[1];
  104. $touser_name = $array[2];
  105. //验证安全签名
  106. $sha1 = new SHA1();
  107. $array = $sha1->getSHA1($this->token, $timestamp, $nonce, $encrypt);
  108. $ret = $array[0];
  109. if ($ret != 0) {
  110. return $ret;
  111. }
  112. $signature = $array[1];
  113. if ($signature != $msgSignature) {
  114. return ErrorCode::$ValidateSignatureError;
  115. }
  116. $result = $pc->decrypt($encrypt, $this->appId);
  117. if ($result[0] != 0) {
  118. return $result[0];
  119. }
  120. $msg = $result[1];
  121. return ErrorCode::$OK;
  122. }
  123. }