public static string Encrypt(string key)
        {
            var crypto = new CommandEncrypter(Salt1, Salt2);

            return(crypto.EncryptMessage(key));
        }
        public static string Decrypt(string hash)
        {
            var crypto = new CommandEncrypter(Salt1, Salt2);

            return(crypto.DecryptMessage(hash));
        }