mirror of
				https://github.com/TeaOSLab/EdgeNode.git
				synced 2025-11-04 07:40:56 +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", ""))
 | 
						|
}
 |