Refactorings:
* BinaryCollector -> BitWriter
* BinaryDistributor -> BitReader
Additions:
* Output class for making serverside output pretty and more readable
* Better RSA keys (private keys withheld)
Changes:
* Minor changes to all views and their rendering
* Added corrective resizing to resize listener to prevent errant window sizes
* Removed "default" language in favour of a purely priority-based system
* NetContext now attempts to verify server identity before continuing to next context
* Simplified common operations in Context
* Minor updates to some layouts
* Completed translations for english and swedish
* Promise system now supports internal processing before notifying original caller
* Bank interactor methods are now async
* Added support for multiple accounts per user (separate repositories for money)
* Removed test code from client program
* Updated Database to support multiple accounts
* Reimplemented RSA on the server side purely as an identity verification system on top of the networking layer (rather than part of the layer)
* Added Account management endpoints
* Added full support for System-sourced transactions
* Added Account availability endpoint
* Added verbose error responses
- Added zigzag decoding
- Added floating point value compression by reinterpreting and serializing floating point values as integer values
- Moved serialization code to common code project
* Moved encryption algorithms into a folder
* Sorted networking into separate files
Additions:
* Created Elliptic Curve encryption implementation
* Generalized the key exchange implementation
- Implemented Diffie-Hellman key exchange
- Implemented Elliptic Curve Diffie-Hellman key exchange
* Started implementing binary data compressor
Changes:
* Changed NetClient and NetServer to use IKeyExchange for initial AES key exchange instead of RSA (for optimization)
* Adapted TextView implementation to properly support optional borders
* Fed InputView issue caused due to border rendering change
* Fixed and simplified Rectangle computations
* Fixed errant naming in Session layout file
* Fixed errant i18n naming in Session layout file
* Fixed resize background rendering issue in ConsoleController
* Fully implemented ListView (needs testing)
* Updated BankInteractor and server to use ECDH-E with Curve25519
Removals:
* Removed identity verification from NetClient (identities checks should be performed as a layer on top of NetClient/NetServer, not as part of it)