BinaryStudio.TaskManager.Logic.Core.CryptoProvider.CreateCryptoPassword C# (CSharp) Method

CreateCryptoPassword() public method

The create crypto password with salt.
public CreateCryptoPassword ( string password, string salt ) : string
password string /// The password. ///
salt string /// The salt. ///
return string
        public string CreateCryptoPassword(string password, string salt)
        {
            return this.CreateHash(this.CreateHash(password) + salt);
        }