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
Isham Khan
1.1k
655
22.4k
Password Encryption
Aug 27 2015 3:53 PM
I use this code for encryption of password,, Now i need the reverse of this that convert Hash to Plain Text plx help
byte[] data = Encoding.Unicode.GetBytes(password);
SHA1 algorithm = SHA1.Create();
byte[] hash = algorithm.ComputeHash(data);
string base64 = Convert.ToBase64String(hash);
Reply
Answers (
4
)
C# in .net 4.5
Displaying gestures in XML!