Example #1
0
        public string run(string password, string algo)
        {
            AlgorithmFactory factory   = new AlgorithmFactory(algo);
            IAlgo            algorithm = factory.create();

            if (algorithm == null)
            {
                return(null);
            }

            string newPassword = algorithm.generate(password);

            return(newPassword);
        }