Пример #1
0
 public static string GetKey(this string input)
 {
     var key = new Rfc2898DeriveBytes(input, Salt, IterationCount).GetBytes(KeyLength);
     return key.ToHex();
 }