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