Files
EdgeAPI/internal/utils/sha1_test.go
GoEdgeLab 5a17ae9d79 v1.4.1
2024-07-27 14:15:25 +08:00

18 lines
377 B
Go

// Copyright 2022 GoEdge CDN goedge.cdn@gmail.com. All rights reserved. Official site: https://goedge.cloud .
package utils_test
import (
"testing"
"github.com/TeaOSLab/EdgeAPI/internal/utils"
"github.com/iwind/TeaGo/types"
)
func TestSha1Random(t *testing.T) {
for i := 0; i < 10; i++ {
var s = utils.Sha1RandomString()
t.Log("["+types.String(len(s))+"]", s)
}
}