BinaryStudio.TaskManager.Logic.Core.CryptoProvider.CreateCryptoPassword C# (CSharp) Méthode

CreateCryptoPassword() public méthode

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