Explorar el Código

签名校验修改

tags/24080901
WendyYang hace 6 meses
padre
commit
29d25f450e
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      hz-pm-api/src/main/java/com/hz/pm/api/open/manage/OpenApiMeetingExpertManage.java

+ 1
- 1
hz-pm-api/src/main/java/com/hz/pm/api/open/manage/OpenApiMeetingExpertManage.java Ver fichero

@@ -190,7 +190,7 @@ public class OpenApiMeetingExpertManage {
} catch (NoSuchAlgorithmException e) {
log.error("签名校验错误:", e);
}
if (sign != null && sign.length() >= 8 && StrUtil.startWith(sign, key)) {
if (sign != null && sign.length() >= 8 && StrUtil.endWith(sign, key)) {
return;
}
throw new BizException("签名错误");


Cargando…
Cancelar
Guardar