C# Класс Roadkill.Core.Database.User

A user object for use with the data store, whatever that might be (e.g. an RDMS or MongoDB)
Наследование: IDataStoreEntity
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
HashPassword ( string password, string salt ) : string

Hashes a combination of the password and salt using SHA1 via FormsAuthentication, or SHA256 is FormsAuthentication is not enabled.

SetPassword ( string password ) : void

Encrypts and sets the password for the user.

Описание методов

HashPassword() публичный статический Метод

Hashes a combination of the password and salt using SHA1 via FormsAuthentication, or SHA256 is FormsAuthentication is not enabled.
public static HashPassword ( string password, string salt ) : string
password string
salt string
Результат string

SetPassword() публичный Метод

Encrypts and sets the password for the user.
public SetPassword ( string password ) : void
password string The password in plain text format.
Результат void