Skip to content
  • Home
  • About Me
  • Contact
Code Verse

Mission to unlock the mysteries of the Code verse

Author: Sathish

C#.NET Encryption Technology TripleDES

How to TripleDES encrypt decrypt data? – Part Two

By Sathish | April 23, 2010 by Sathish

This post has reference to part one of this Article. Inside our “TripleDESCrypt“ class, lets implement another method to read the MD5 HashKey generated from the Secret Key from the User. This method will load…

C#.NET Encryption MD5 Technology TripleDES

How to TripleDES encrypt decrypt data? – Part One

By Sathish | April 23, 2010 by Sathish

In this post, a simple demonstration of how TripleDES Encryption algorithm can be implemented using System.Security.Cryptography namespace in .NET will be explained. First of all, we need to create a XML file where we will…

C#.NET Encryption RSA Technology

How to RSA Encrypt Decrypt Data (C#) ?

By Sathish | April 19, 2010 by Sathish

This post has reference to part one of this Article. Inside our “Crypt” class, lets include two more methods. public string EncryptData(string data2Encrypt){      ParameterSetup();      StreamReader reader = new StreamReader(publicPath);      string publicOnlyKeyXML = reader.ReadToEnd();      rsa.FromXmlString(publicOnlyKeyXML);      reader.Close();…

C#.NET Encryption RSA Technology

How to Generate RSA Encryption keys (C#) ?

By Sathish | April 19, 2010 by Sathish

In this post, Simple Demonstration of RSA Encryption Algorithm will be explained. Here, we are going to make use of the System.Security.Cryptography namespace. Now, Lets create two XML files, PrivateKey.xml and PublicKey.xml. In these files…

C#.NET Technology

How to convert Image format programmatically (.NET) ?

By Sathish | March 26, 2010 by Sathish

To convert an Image from one format to another, use the following Method.Here, the known formats include, Bmp, Emf, Exif, Gif, Icon, Jpeg, Png, Tiff, Wmf etc. First, include the following Namespaces; using System.IO.Path;using System.Drawing.Imaging;…

Technology WCF

WCF and HTTP Error 404.3

By Sathish | March 17, 2010 by Sathish

Once you create a WCF Service from Visual Studio 2008 and after publishing to IIS, when you browse your Service, you will receive HTTP 404.3 Error. But you will not find any discrepancies in IIS…

LINQ MS SQL Technology

Using LINQ to SQL Template – Part Two

By Sathish | March 12, 2010 by Sathish

This post has reference to part one of this Article. Create a new Class with the name “MyLinq”. We are going to use the DataContextFactory Class which we created in Part One. Also assume in…

C#.NET Technology XML

How to convert Dictionary List to XElement

By Sathish | March 12, 2010 by Sathish

XElement represents an XML element. This post will describe about how to convert Dictionary to XML Format. Assume you want the XML to be in the following format, <paramlist><param><key>1</key><value>100</value></param><param><key>2</key><value>150</value></param></paramlist> The Dictionary is having <String, String>…

LINQ MS SQL Technology

Using LINQ to SQL Template – Part One

By Sathish | March 10, 2010 by Sathish

LINQ to SQL is a component of the .NET Framework version 3.5. Click to learn more about LINQ to SQL First of all, in your Project or Website, add a new item from the “LINQ to…

ASP.NET Technology

How to use QueryString

By Sathish | March 9, 2010 by Sathish

Assume we need to pass certain Variable content between html or aspx pages, often the Request object of QueryString is used. QueryStrings are combination of {key=value} pairs joined by ‘&’ and added to the html…

Posts navigation

Older posts
Newer posts
© 2025 Code Verse | WordPress Theme Design by Superb