TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Suman Raj
NA
287
13.5k
Need Decryption for this code
Jul 13 2018 4:18 AM
public string GetMD5(string text)
{
MD5CryptoServiceProvider MD5 = new MD5CryptoServiceProvider();
MD5.ComputeHash(ASCIIEncoding.ASCII.GetBytes(text));
byte[] result = MD5.Hash;
StringBuilder str = new StringBuilder();
for (int i = 1; i < result.Length; i++)
{
str.Append(result[i].ToString("x2"));
}
return str.ToString();
}
Reply
Answers (
4
)
i thinnk FrameWork error
How to serialise and deserialise a list in c#