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
Nirmal Roy
NA
365
29.4k
How can I Decryption This HashSha256 algorithm?
Dec 23 2016 1:00 AM
Can Some One Help me?
This Is Encryption format. But I need using this algorithm Decryption it.
public string getHashSha256(string text)
{
byte[] bytes = Encoding.Default.GetBytes(text);
byte[] kbytes = Encoding.Default.GetBytes(secretKey);
HMACSHA256 hashstring = new HMACSHA256();
hashstring.Key = kbytes;
byte[] hash = hashstring.ComputeHash(bytes);
string hashString = string.Empty;
foreach (byte x in hash)
{
hashString += String.Format("{0:x2}", x);
}
return hashString.ToUpper();
}
Output - Encryption format - 0C826CD94EBA33A71184B9BEFD474B18D9364ACF34D5DF13D2411CF79CFA5292
But this Format i need Decryption it.
How should i do this? Can someone give me Code. ?
Reply
Answers (
1
)
what outer loop and inner loop represent in bubble sort
data table to dictionary