ppanel-server/pkg/tool/cipher_test.go
2025-09-27 10:17:16 +08:00

11 lines
144 B
Go

package tool
import (
"testing"
)
func TestGenerateCipher(t *testing.T) {
pwd := GenerateCipher("serverKey", 128)
t.Logf("pwd: %s", pwd)
}