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
trkpower
NA
10
0
Encrypt decrypt
May 27 2008 1:10 PM
hi ,
i want to encrypt and decrypt a string.
to encrypt i have this:
string toencode;
byte[] text;
text = Encoding.Unicode.GetBytes(toencode);
SHA256Managed hash = new SHA256Managed();
texto = hash.ComputeHash(text);
Convert.ToBase64String(text);
to decrypt how can i do it?
thanks in advance
Reply
Answers (
2
)
foreach Dictionary
Ctor issue in subclasses...