1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-07 19:17:21 +00:00

Replace util.SliceXxx with slices.Xxx (#26958)

This commit is contained in:
CaiCandong
2023-09-07 17:37:47 +08:00
committed by GitHub
parent e97e883ad5
commit a78c2eae24
16 changed files with 46 additions and 110 deletions

View File

@ -16,6 +16,7 @@ import (
"net/http"
"path"
"regexp"
"slices"
"strconv"
"strings"
"time"
@ -265,7 +266,7 @@ func verifyDataOld(signature, data []byte, pub *rsa.PublicKey) error {
}
}
if !util.SliceEqual(out[skip:], data) {
if !slices.Equal(out[skip:], data) {
return fmt.Errorf("could not verify signature")
}