10 lines
188 B
C#
10 lines
188 B
C#
|
namespace API.Hashing.Interfaces
|
||
|
{
|
||
|
public interface IHashingAlgorithm
|
||
|
{
|
||
|
public string hash(string password, out byte[] salt);
|
||
|
|
||
|
public string hash(string password, byte[] salt);
|
||
|
}
|
||
|
}
|