6 lines
155 B
C#
6 lines
155 B
C#
namespace DigitalData.Core.Abstractions.Security.Key;
|
|
|
|
public interface IAsymmetricEncryptor : IAsymmetricPublicKey
|
|
{
|
|
byte[] Encrypt(byte[] data);
|
|
} |