7455d7e426
130 issues auto-fixed (import ordering, UP045/UP006 type annotations), 33 issues manually fixed (E712/E501/E402/E722 + N818 rename + per-file wechat ignore for N8xx naming conventions). All 33 tests pass.
20 lines
771 B
Python
20 lines
771 B
Python
#!/usr/bin/env python
|
|
#########################################################################
|
|
# 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_ValidateCorpid_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
|