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.
18 lines
595 B
18 lines
595 B
<?php
|
|
namespace LaneWeChat\Core\Aes;
|
|
|
|
class ErrorCode
|
|
{
|
|
public static $OK = 0;
|
|
public static $ValidateSignatureError = -40001;
|
|
public static $ParseXmlError = -40002;
|
|
public static $ComputeSignatureError = -40003;
|
|
public static $IllegalAesKey = -40004;
|
|
public static $ValidateAppidError = -40005;
|
|
public static $EncryptAESError = -40006;
|
|
public static $DecryptAESError = -40007;
|
|
public static $IllegalBuffer = -40008;
|
|
public static $EncodeBase64Error = -40009;
|
|
public static $DecodeBase64Error = -40010;
|
|
public static $GenReturnXmlError = -40011;
|
|
} |