Exemplo n.º 1
0
 static public KeyData Load(string filename)
 {
     using (var stream = new FileStream(filename, FileMode.Open))
         return(KeyData.Load(stream));
 }
Exemplo n.º 2
0
 public KeyData(KeyData other)
 {
     Key = other.Key;
     IV  = other.IV;
 }