namespace DigitalData.Core.Abstractions.Security { public interface IAsymmetricEncryptor : IAsymmetricPublicKey { byte[] Encrypt(byte[] data); } }