예제 #1
0
 public static TeaKey GenerateKey() => Factory.GenerateKey();
예제 #2
0
 public static ITEA Create(TeaTypes type, byte[] pwd) => Factory.Create(type, pwd);
예제 #3
0
 public static ITEA Create(TeaTypes type, TeaKey key) => Factory.Create(type, key);
예제 #4
0
 public static ITEA Create(TeaTypes type, string pwd, Encoding encoding = null) => Factory.Create(type, pwd, encoding);
예제 #5
0
 public static ITEA Create(TeaTypes type) => Factory.Create(type);
예제 #6
0
 public static ITEA Create() => Factory.Create();
예제 #7
0
 public static TeaKey GenerateKey(byte[] pwd) => Factory.GenerateKey(pwd);
예제 #8
0
 public static TeaKey GenerateKey(string pwd, Encoding encoding) => Factory.GenerateKey(pwd, encoding);