更新数据库加密相关操作

This commit is contained in:
2025-01-18 09:40:24 +08:00
parent b064d60876
commit b422830708

View File

@@ -19,7 +19,7 @@ if (!function_exists('is_encrypted')) {
if (!is_string($data)) {
return false;
}
// 这里应该有逻辑来判断$data是否已经被加密。
// 这里应该有逻辑来判断$data是否已经被加密。未加密是true
return strpos($data, 'xk_ase_256_') === 0;
}
}