13 lines
315 B
C#
13 lines
315 B
C#
namespace Umbraco.Core.Security
|
|
{
|
|
public interface IPasswordHasher
|
|
{
|
|
/// <summary>
|
|
/// Hashes a password
|
|
/// </summary>
|
|
/// <param name="password">The password.</param>
|
|
/// <returns>The password hashed.</returns>
|
|
string HashPassword(string password);
|
|
}
|
|
}
|