Files
EdgeNode/internal/utils/encrypt/method_utils_test.go

13 lines
258 B
Go
Raw Normal View History

2024-05-11 09:23:54 +08:00
package encrypt_test
import (
"testing"
2024-07-27 15:42:50 +08:00
"github.com/TeaOSLab/EdgeNode/internal/utils/encrypt"
2024-05-11 09:23:54 +08:00
)
func TestFindMethodInstance(t *testing.T) {
t.Log(encrypt.NewMethodInstance("a", "b", ""))
t.Log(encrypt.NewMethodInstance("aes-256-cfb", "123456", ""))
}