11 lines
275 B
C#
11 lines
275 B
C#
namespace DigitalData.MessagingService.Application.Common.Interfaces;
|
|
|
|
/// <summary>
|
|
/// Encryption service interface for password encryption.
|
|
/// </summary>
|
|
public interface IEncryptionService
|
|
{
|
|
string Encrypt(string plainText);
|
|
string Decrypt(string cipherText);
|
|
}
|