10 lines
156 B
C#
10 lines
156 B
C#
|
using DAL.Models;
|
||
|
|
||
|
namespace API.Hashing.Interfaces
|
||
|
{
|
||
|
public interface IHashingFactory
|
||
|
{
|
||
|
public IHashingAlgorithm? getAlgorithm(HashingType type);
|
||
|
}
|
||
|
}
|