#!/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_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
|