Click here to Skip to main content
Licence CPOL
First Posted 17 Jul 2009
Views 48,682
Downloads 3,860
Bookmarked 57 times

Phone Book in C#

By Mohammad Dayyan | 9 Sep 2009
Phone book in C#
5 votes, 22.7%
1
1 vote, 4.5%
2
2 votes, 9.1%
3
6 votes, 27.3%
4
8 votes, 36.4%
5
3.38/5 - 22 votes
μ 3.38, σa 2.79 [?]
phonebook.png

Introduction

Some days ago, I lost my cellphone. All of my contact numbers were in the cellphone and I lost them. Miraculously I found my cellphone, but I decided to create a phone book application to store my contacts. This application was written in C# and LINQ. I used an XML file to store contacts and I encoded them with the 3DES algorithm to protect them.

Application Features

Live Search

You could search your contacts as Live.

Multi Users

The application can have several users. Each user can just see his/her contacts.

Password Reminder

passwordReminder.png

If you want to use this feature, you have to enter a valid User name and Password of your SmptClient in C# code.
Also, you can enter your Gmail's user name and password. You have to enter them in Forgets the password region in UserForm.cs.

try
{
    NetworkCredential loginInfo = new NetworkCredential("username", "password");
    MailMessage msg = new MailMessage();
    msg.From = new MailAddress("sth@gmail.com");
    msg.To.Add(new MailAddress(user.First().Attribute("Email").Value));
    msg.Subject = "Phonebook Password";
    msg.Body = "Yours Password = " + password;
    msg.IsBodyHtml = true;
    SmtpClient client = new SmtpClient("smtp.gmail.com");
    client.EnableSsl = true;
    client.UseDefaultCredentials = false;
    client.Credentials = loginInfo;
    client.Send(msg);

    MessageBox.Show("Your password has been sent to your email", "Email sent",
    	MessageBoxButtons.OK, MessageBoxIcon.Information);
}
catch (Exception ex)
{
    MessageBox.Show(ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}

At last, compile the project with new data and use it.

Security

To protect contacts, I've used .NET 3DES classes.

//Base on : http://msdn.microsoft.com/en-us/library/system.security.cryptography.
	//tripledescryptoserviceprovider.aspx
public static void EncryptToFile(String Data, String FileName, byte[] Key, byte[] IV)
{
    try
    {
        // Create or open the specified file.
        FileStream fStream = File.Open(FileName, FileMode.Create);

        // Create a CryptoStream using the FileStream
        // and the passed key and initialization vector (IV).
        CryptoStream cStream = new CryptoStream
				(fStream, new TripleDESCryptoServiceProvider().
        	CreateEncryptor(Key, IV), CryptoStreamMode.Write);

        // Create a StreamWriter using the CryptoStream.
        StreamWriter sWriter = new StreamWriter(cStream);

        // Write the data to the stream
        // to encrypt it.
        sWriter.WriteLine(Data);

        // Close the streams and
        // close the file.
        sWriter.Close();
        cStream.Close();
        fStream.Close();
    }
    catch (CryptographicException e)
    {
        Console.WriteLine("A Cryptographic error occurred: {0}", e.Message);
    }
    catch (UnauthorizedAccessException e)
    {
        Console.WriteLine("A file access error occurred: {0}", e.Message);
    }
}

public static string DecryptFromFile(String FileName, byte[] Key, byte[] IV)
{
    try
    {
        // Create or open the specified file.
        FileStream fStream = File.Open(FileName, FileMode.OpenOrCreate);

        // Create a CryptoStream using the FileStream
        // and the passed key and initialization vector (IV).
        CryptoStream cStream = new CryptoStream
				(fStream, new TripleDESCryptoServiceProvider().
        	CreateDecryptor(Key, IV), CryptoStreamMode.Read);

        // Create a StreamReader using the CryptoStream.
        StreamReader sReader = new StreamReader(cStream);

        // Read the data from the stream
        // to decrypt it.
        string val = sReader.ReadToEnd();

        // Close the streams and
        // close the file.
        sReader.Close();
        cStream.Close();
        fStream.Close();

        // Return the string.
        return val;
    }
    catch (CryptographicException e)
    {
        Console.WriteLine("A Cryptographic error occurred: {0}", e.Message);
        return null;
    }
    catch (UnauthorizedAccessException e)
    {
        Console.WriteLine("A file access error occurred: {0}", e.Message);
        return null;
    }
}

No one can see your data in the XML file, because it is encoded. I suggest to change the Key and the Vector and use your own ones in TripleDES.cs. These are default Key and Vector:

public static byte[] ByteKey = 
	new byte[] { 65, 20, 35, 105, 249, 97, 242, 87, 163, 127, 124, 121,
	73, 225, 209, 103, 5, 198, 68, 221, 122, 14, 224, 2 };
public static byte[] IV = new byte[] { 160, 175, 98, 111, 208, 167, 177, 23 };

If you are a beginner in 3DES, you can use this application to change your Key and IV.

3DESKeyGenerator.png

Settings

There are some cool settings to use the application better.

settings.png

You can change the Direction of contacts or type of Calendar to show item's register date. You can also change the Application's font size.

History

  • 18th July, 2009: First post
  • 21st July, 2009: Updated
  • 9th September, 2009: Updated

License

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

About the Author

Mohammad Dayyan



Iran (Islamic Republic Of) Iran (Islamic Republic Of)

Member


Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
Questionتشکر Pinmemberamir 222:53 12 Jul '11  
Generalmy vote 5 Pinmemberwaqas31620:07 11 Nov '10  
Generalthnax Dr.Mohammad Dayyan PinmemberAhmad9811:57 12 Oct '10  
GeneralGood work :) Pinmembersunless_2012:28 1 Jul '10  
GeneralDatabase! Pinmemberdj_amin0:56 12 Mar '10  
Ranteyvaal Pinmemberakbar_pd0:46 11 Jan '10  
GeneralMy vote of 1 PinmemberStojaneee14:43 3 Jan '10  
GeneralRe: My vote of 1 PinmemberFernandoUY20:48 24 Jan '12  
General[My vote of 2] just ok PinmemberDonsw16:50 6 Oct '09  
QuestionWhy Des? PinmemberCuchuk Sergey23:27 9 Sep '09  
AnswerRe: Why Des? PinmemberMohammad Dayyan0:09 10 Sep '09  
GeneralPrinting report PinmemberBlubbo2:42 28 Jul '09  
GeneralRe: Printing report PinmemberMohammad Dayyan11:56 8 Sep '09  
Generalexport and import contact PinmemberNiN9E2:36 28 Jul '09  
GeneralMy vote of 1 PinmemberGwannoes21:25 27 Jul '09  
GeneralRe: My vote of 1 PinmemberFernandoUY20:47 24 Jan '12  
GeneralRe: My vote of 1 PinmemberGwannoes23:42 6 Feb '12  
GeneralRe: My vote of 1 PinmemberFernandoUY20hrs 9mins ago 
GeneralMy vote of 1 PinmemberJoe Sonderegger21:02 27 Jul '09  
GeneralMy vote of 1 Pinmembermheidari21:50 22 Jul '09  
GeneralRe: My vote of 1 PinmemberMohammad Dayyan5:50 23 Jul '09  
General[My vote of 1] This is a junior high school exercise PinmemberITMaiO1:35 22 Jul '09  
GeneralRe: [My vote of 1] This is a junior high school exercise PinmemberMohammad Dayyan5:48 23 Jul '09  
GeneralRe: [My vote of 1] This is a junior high school exercise PinmemberMario Majcica6:07 23 Jul '09  
GeneralRe: [My vote of 1] This is a junior high school exercise PinmemberMohammad Dayyan6:22 23 Jul '09  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web02 | 2.5.120210.1 | Last Updated 9 Sep 2009
Article Copyright 2009 by Mohammad Dayyan
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid