Files
FACULTATE-HEALTHCARE_MANAGER/backend/Application/Services/HashingAlgorithms/IHashingAlgorithms.cs
T
2024-04-08 00:03:24 +03:00

6 lines
140 B
C#

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