server/pkg/tool/cipher_test.go
2025-05-31 10:46:28 -04:00

12 lines
170 B
Go

package tool
import (
"testing"
)
func TestGenerateCipher(t *testing.T) {
pwd := GenerateCipher("", 16)
t.Logf("pwd: %s", pwd)
t.Logf("pwd length: %d", len(pwd))
}