Exemplo n.º 1
0
 public StretchedHash(byte[] b, StretchedHash s) : this(b, s.GetSize(), s.GetSalt(), s.GetIterations())
 {
 }
Exemplo n.º 2
0
 static public void Write(this BinaryWriter item, StretchedHash value)
 {
     item.Write(value.GetHash());
     item.Write(value.GetSalt());
     item.Write(value.GetIterations());
 }