7 lines
163 B
C#
7 lines
163 B
C#
namespace GestorFacturas.API.Services.Interfaces;
|
|
|
|
public interface IEncryptionService
|
|
{
|
|
string Encrypt(string plainText);
|
|
string Decrypt(string cipherText);
|
|
} |