mirror of
https://github.com/esiur/esiur-dotnet.git
synced 2025-05-06 03:32:57 +00:00
15 lines
331 B
C#
15 lines
331 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Runtime.CompilerServices;
|
|
using System.Text;
|
|
|
|
namespace Esiur.Security.Cryptography
|
|
{
|
|
public interface IKeyExchanger
|
|
{
|
|
public ushort Identifier { get; }
|
|
public byte[] GetPublicKey();
|
|
public byte[] ComputeSharedKey(byte[] key);
|
|
}
|
|
}
|