Re: Decrypt
From: William Stacey [MVP] (staceywREMOVE_at_mvps.org)
Date: 02/04/05
- Next message: NuTcAsE: "Re: Change NTFS Permissions"
- Previous message: news.microsoft.com: "Decrypt"
- In reply to: news.microsoft.com: "Decrypt"
- Next in thread: news.microsoft.com: "Re: Decrypt"
- Reply: news.microsoft.com: "Re: Decrypt"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] [ attachment ]
Date: Fri, 4 Feb 2005 12:20:37 -0500
MD5 is a one way hash. You can't reverse it. You can, however, verify that
two strings will produce the same hash.
-- William Stacey, MVP http://mvp.support.microsoft.com "news.microsoft.com" <claudio@digi.com.br> wrote in message news:##lkT0tCFHA.3280@TK2MSFTNGP14.phx.gbl... > I found the followin example of how to encrypt a text: > public static string Cript(string text) > > { > > Byte[] clearBytes = new UnicodeEncoding().GetBytes(text); > > Byte[] hashedBytes = ((HashAlgorithm) > CryptoConfig.CreateFromName("MD5")).ComputeHash(clearBytes); > > > return BitConverter.ToString(hashedBytes); > > } > > > > I would like to know how to decrypt it. Does anyone can help me? > > > > public static string DeCript(string text) > > { > > ????? > > } > > > >
- Next message: NuTcAsE: "Re: Change NTFS Permissions"
- Previous message: news.microsoft.com: "Decrypt"
- In reply to: news.microsoft.com: "Decrypt"
- Next in thread: news.microsoft.com: "Re: Decrypt"
- Reply: news.microsoft.com: "Re: Decrypt"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] [ attachment ]
Relevant Pages
|