This is a discussion on Code to encrypt the Password or any string within the ASP and ASP.NET Programming forums, part of the Web Development category; /// <summary> /// Thsi method retrieve the string to encrypt from the Presentation Layer /// And return the Encrypted String /// </...
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
| |||
| /// <summary> /// Thsi method retrieve the string to encrypt from the Presentation Layer /// And return the Encrypted String /// </summary> /// <param name="str"></param> /// <returns></returns> public string encryptPassword(string strText) { return Encrypt(strText, "&%#@?,:*"); } /// <summary> /// This method retrieve the encrypted string to decrypt from the Presentation Layer /// And return the decrypted string /// </summary> /// <param name="str"></param> /// <returns></returns> public string decryptPassword(string str) { return Decrypt(str, "&%#@?,:*"); } /// <summary> /// This method has been used to get the Encrypetd string for the /// passed string /// </summary> /// <param name="strText"></param> /// <param name="strEncrypt"></param> /// <returns></returns> private string Encrypt(string strText, string strEncrypt) { byte[] byKey = new byte[20]; byte[] dv ={ 0x12, 0x34, 0x56, 0x78, 0x90, 0xAB, 0xCD, 0xEF }; try { byKey = System.Text.Encoding.UTF8.GetBytes(strEncrypt.Subs tring(0, 8)); DESCryptoServiceProvider des = new DESCryptoServiceProvider(); byte[] inputArray = System.Text.Encoding.UTF8.GetBytes(strText); MemoryStream ms = new MemoryStream(); CryptoStream cs = new CryptoStream(ms, des.CreateEncryptor(byKey, dv), CryptoStreamMode.Write); cs.Write(inputArray, 0, inputArray.Length); cs.FlushFinalBlock(); return Convert.ToBase64String(ms.ToArray()); } catch (Exception ex) { throw ex; } } /// <summary> /// This method has been used to Decrypt the Encrypted String /// </summary> /// <param name="strText"></param> /// Offshore Software Development Company India, Software Development India /// <param name="strEncrypt"></param> /// <returns></returns> private string Decrypt(string strText, string strEncrypt) { byte[] bKey = new byte[20]; byte[] IV = { 0x12, 0x34, 0x56, 0x78, 0x90, 0xAB, 0xCD, 0xEF }; try { bKey = System.Text.Encoding.UTF8.GetBytes(strEncrypt.Subs tring(0, 8)); DESCryptoServiceProvider des = new DESCryptoServiceProvider(); Byte[] inputByteArray = inputByteArray = Convert.FromBase64String(strText); MemoryStream ms = new MemoryStream(); CryptoStream cs = new CryptoStream(ms, des.CreateDecryptor(bKey, IV), CryptoStreamMode.Write); cs.Write(inputByteArray, 0, inputByteArray.Length); cs.FlushFinalBlock(); System.Text.Encoding encoding = System.Text.Encoding.UTF8; return encoding.GetString(ms.ToArray()); } catch (Exception ex) { throw ex; } } Software Development India |
| Sponsored Links |
![]() |
| Thread Tools | |
| Display Modes | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Perl encrypt programs | LEO | Perl | 2 | 10-04-2008 11:36 PM |
| How can we encrypt the username and password using PHP? | sundarraja | PHP Programming | 3 | 05-15-2008 07:29 AM |
| What is diffrenece between string.compare and string.compareordinal | shaalini | ASP and ASP.NET Programming | 3 | 12-28-2007 10:46 PM |
| If any possible for Html page encrypt | sathian | HTML, CSS and Javascript Coding Techniques | 1 | 12-03-2007 08:52 PM |
| encrypt and decrypt query string | hanusoftware | VB.NET Programming | 0 | 06-07-2007 05:55 AM |