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

11 lines
270 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);
byte[] Random(uint length);
}
}