Files
FACULTATE-HEALTHCARE_MANAGER/backend/Application/Services/HashingAlgorithms/IHashingAlgorithms.cs
T
2024-05-21 12:10:53 +03:00

6 lines
140 B
C#

namespace Application.Services.HashingAlgorithms;
public interface IHashingAlgorithms
{
string? Sha256Algorithm(string? password);
}