using System.Threading.Tasks; namespace ModernKeePass.Application.Common.Interfaces { public interface ICryptographyClient { Task Protect(string value); Task UnProtect(string value); byte[] Random(uint length); } }