BinaryStudio.TaskManager.Logic.Core.CryptoProvider.CreateCryptoPassword C# (CSharp) 메소드

CreateCryptoPassword() 공개 메소드

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