Files
waf-platform/EdgeNode/internal/utils/encrypt/method_utils_test.go
2026-02-04 20:27:13 +08:00

12 lines
257 B
Go

package encrypt_test
import (
"github.com/TeaOSLab/EdgeNode/internal/utils/encrypt"
"testing"
)
func TestFindMethodInstance(t *testing.T) {
t.Log(encrypt.NewMethodInstance("a", "b", ""))
t.Log(encrypt.NewMethodInstance("aes-256-cfb", "123456", ""))
}