// +----------------------------------------------------------------------
declare (strict_types=1);
namespace app\common\library\wechat;
/**
* error code 说明.
*
* - -41001: encodingAesKey 非法
* - -41003: aes 解密失败
* - -41004: 解密后得到的buffer非法
* - -41005: base64加密失败
* - -41016: base64解密失败
*
*/
class ErrorCode
{
public static int $OK = 0;
public static int $IllegalAesKey = -41001;
public static int $IllegalIv = -41002;
public static int $IllegalBuffer = -41003;
public static int $DecodeBase64Error = -41004;
}