Click here to Skip to main content
15,881,424 members
Articles / Mobile Apps

Windows Mobile Password Safe

Rate me:
Please Sign up or sign in to vote.
4.87/5 (58 votes)
12 Jan 2009CPOL16 min read 158.8K   3.1K   139  
A password safe with a touch screen UI introducing Fluid Controls.
using System;

using System.Collections.Generic;
using System.Text;
using PasswordSafe.Classes;
using System.Xml;

namespace PasswordSafe.Xml
{
    public class PasswordWriter : IDisposable
    {
        public string Write(IEnumerable<PasswordCategory> categories, IEnumerable<PasswordData> passwords)
        {
            StringBuilder xml = new StringBuilder();
            XmlWriterSettings settings = new XmlWriterSettings();
            using (XmlWriter writer = XmlTextWriter.Create(xml, settings))
            {
                writer.WriteStartElement("passwordsafe");
                writer.WriteStartElement("categories");
                WriteCategories(writer, categories);
                writer.WriteEndElement();
                writer.WriteStartElement("passwords");
                WritePasswords(writer, passwords);
                writer.WriteEndElement();
                writer.WriteEndElement();
            }

            return xml.ToString();
        }

        private void WritePasswords(XmlWriter writer, IEnumerable<PasswordData> passwords)
        {
            foreach (PasswordData password in passwords)
            {
                writer.WriteStartElement("password");
                WriteValues(writer, password);
                writer.WriteEndElement();
            }
        }

        private void WriteValues(XmlWriter writer, PasswordData password)
        {
            foreach (string name in password.Values.AllKeys)
            {
                if (name.Equals("category", StringComparison.CurrentCultureIgnoreCase)) continue;
                string value = password.Values[name];
                writer.WriteAttributeString(name, value);
            }
            if (password.Category != null && !password.Category.IsDefault)
            {
                writer.WriteAttributeString("category", password.Category.Name);
            }
        }

        private void WriteCategories(XmlWriter writer, IEnumerable<PasswordCategory> categories)
        {
            foreach (PasswordCategory category in categories)
            {
                if (category.IsDefault) continue;
                writer.WriteStartElement("category");
                writer.WriteAttributeString("name", category.Name);
                if (!string.IsNullOrEmpty(category.Title) && category.Name != category.Title)
                {
                    writer.WriteAttributeString("title", category.Title);
                }
                WriteFields(writer, category);
                writer.WriteEndElement();
            }
        }

        private void WriteFields(XmlWriter writer, PasswordCategory category)
        {
            foreach (FieldInfo info in category.Fields)
            {
                if (info.Type == FieldType.Separator)
                {
                    writer.WriteStartElement("separator");
                    if (!string.IsNullOrEmpty(info.Title) && info.Title != info.Name)
                    {
                        writer.WriteAttributeString("title", info.Title);
                    }
                }
                else
                {
                    writer.WriteStartElement("field");
                    writer.WriteAttributeString("name", info.Name);
                    if (!string.IsNullOrEmpty(info.Title) && info.Title != info.Name)
                    {
                        writer.WriteAttributeString("title", info.Title);
                    }
                    if (info.Type != FieldType.String)
                    {
                        writer.WriteAttributeString("type", info.Type.ToString());
                    }
                }
                writer.WriteEndElement();
            }
        }

        #region IDisposable Members

        public void Dispose()
        {
        }

        #endregion
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
Germany Germany
MCPD
Enterprise Application Developer 3.5
Windows Developer 3.5
.ASP.NET Developer 3.5
.NET 2.0 Windows Developer
.NET 2.0 Web Developer
.NET 2.0 Enterprise Application Developer


MCTS
.NET 3.5 Windows Forms Applications
.NET 3.5 ASP.NET Applications
.NET 3.5, ADO.NET Application Development
.NET 3.5 WCF
.NET 3.5 WPF
.NET 3.5 WF
Microsoft SQL Server 2008, Database Development
.NET 2.0 Windows Applications
.NET 2.0 Web Applications
.NET 2.0 Distributed Applications
SQL Server 2005
Sharepoint Services 3.0 Application Development
Windows Vista Client Configuration

Comments and Discussions