Exemplo n.º 1
0
        public static void Create(this IPasswordInformation passwordInfo, string path, string password, uint hashIterations)
        {
            var result = new PasswordInformation(password, hashIterations);

            result.Save(path);
        }