* 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
16 lines
320 B
C#
16 lines
320 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.KeyExchange
|
|
{
|
|
public interface IKeyExchange
|
|
{
|
|
byte[] GetPublicKey();
|
|
byte[] GetSharedSecret(byte[] pub);
|
|
}
|
|
}
|