* Added new endpoint for updating password * Added internationalization method to ContextManager and Context * Updated contexts to use internationalization * Added a fancy text-based UI to the server * Added translations * Moved Promise class to its own file * Made BankNetInteractor its own file * Added a lot of convenient methods * Added many more comments * Fixed input event management in ButtonView * Added support for dynamic ListView content modification * Added more layouts * Fixed some namespaces * Added more commands to the server
28 lines
765 B
C#
28 lines
765 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Numerics;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Tofvesson.Common.Cryptography
|
|
{
|
|
public class Point
|
|
{
|
|
public static readonly Point POINT_AT_INFINITY = new Point();
|
|
public BigInteger X { get; private set; }
|
|
public BigInteger Y { get; private set; }
|
|
private bool pai = false;
|
|
public Point(BigInteger x, BigInteger y)
|
|
{
|
|
X = x;
|
|
Y = y;
|
|
}
|
|
private Point() { pai = true; } // Accessing corrdinates causes undocumented behaviour
|
|
public override string ToString()
|
|
{
|
|
return pai ? "(POINT_AT_INFINITY)" : "(" + X + ", " + Y + ")";
|
|
}
|
|
}
|
|
}
|