Files
modernkeepass/ModernKeePass.Application/Common/Interfaces/ICryptographyClient.cs

10 lines
234 B
C#
Raw Normal View History

using System.Threading.Tasks;
namespace ModernKeePass.Application.Common.Interfaces
{
public interface ICryptographyClient
{
Task<string> Protect(string value);
Task<string> UnProtect(string value);
}
}