public Destination() { X = DFKeyGenerator.GetX(); Y = DFKeyGenerator.GetY(X); }
public void GenerateKey(int y) { Key = DFKeyGenerator.GetKey(X, y); Console.WriteLine($"Destination: X:{X} Y:{Y} KEY:{Key}"); }
public Source() { X = DFKeyGenerator.GetX(); Y = DFKeyGenerator.GetY(X); }