Files
DigitalData.Core/DigitalData.Core.Abstractions.Security/Key/IAsymmetricDecryptor.cs

8 lines
201 B
C#

namespace DigitalData.Core.Abstractions.Security.Key;
public interface IAsymmetricDecryptor : IAsymmetricPrivateKey
{
byte[] Decrypt(byte[] data);
IAsymmetricEncryptor Encryptor { get; }
}