You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
795 B
21 lines
795 B
3 years ago
|
#!/usr/bin/env python
|
||
|
# -*- coding: utf-8 -*-
|
||
|
#########################################################################
|
||
|
# Author: jonyqin
|
||
|
# Created Time: Thu 11 Sep 2014 01:53:58 PM CST
|
||
|
# File Name: ierror.py
|
||
|
# Description:定义错误码含义
|
||
|
#########################################################################
|
||
|
WXBizMsgCrypt_OK = 0
|
||
|
WXBizMsgCrypt_ValidateSignature_Error = -40001
|
||
|
WXBizMsgCrypt_ParseXml_Error = -40002
|
||
|
WXBizMsgCrypt_ComputeSignature_Error = -40003
|
||
|
WXBizMsgCrypt_IllegalAesKey = -40004
|
||
|
WXBizMsgCrypt_ValidateAppid_Error = -40005
|
||
|
WXBizMsgCrypt_EncryptAES_Error = -40006
|
||
|
WXBizMsgCrypt_DecryptAES_Error = -40007
|
||
|
WXBizMsgCrypt_IllegalBuffer = -40008
|
||
|
WXBizMsgCrypt_EncodeBase64_Error = -40009
|
||
|
WXBizMsgCrypt_DecodeBase64_Error = -40010
|
||
|
WXBizMsgCrypt_GenReturnXml_Error = -40011
|