|
|
@@ -519,7 +519,7 @@ EOT;
|
|
|
* $iv 随机数
|
|
|
*/
|
|
|
if (!function_exists('encrypt')) {
|
|
|
- function encrypt($data, $secret_key, $iv)
|
|
|
+ function encrypt($data, $secret_key='vxl3KMJwk50raZWE', $iv='vxl3KMJwk50raZWE')
|
|
|
{
|
|
|
if ($data == null || empty($data)) {
|
|
|
return $data;
|
|
|
@@ -535,7 +535,7 @@ EOT;
|
|
|
* $iv 随机数
|
|
|
*/
|
|
|
if (!function_exists('decode')) {
|
|
|
- function decode($data, $secret_key, $iv)
|
|
|
+ function decode($data, $secret_key='vxl3KMJwk50raZWE', $iv='vxl3KMJwk50raZWE')
|
|
|
{
|
|
|
if ($data == null || empty($data)) {
|
|
|
return $data;
|