6 lines
140 B
C#
6 lines
140 B
C#
namespace Application.Services.HashingAlgorithms;
|
|
|
|
public interface IHashingAlgorithms
|
|
{
|
|
string? Sha256Algorithm(string? password);
|
|
} |