mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-11-07 02:20:25 +08:00
12 lines
257 B
Go
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", ""))
|
||
|
|
}
|