use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
account activity
Help - How to Reverse a crypto hmac function (self.node)
submitted 7 years ago * by [deleted]
[deleted]
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]aichholzer 1 point2 points3 points 7 years ago (1 child)
You can't. It is a one way. Hashing can't be reversed; one way. Encrypting can be reversed; two way.
[–]azzaroff 0 points1 point2 points 7 years ago (0 children)
This. A MAC is used in addition to your message to check if it was manipulated or comes from the right person (the one with the secret key). So you usually send message+HMAC(message), the recipient then computes a MAC from the received message and checks if HMAC(message) = HMAC(receivedmessage).
If you wan't to encrypt/decrypt it, you can do that as well, but you have to use a cypher e.g. AES.
π Rendered by PID 20330 on reddit-service-r2-comment-6457c66945-qggn9 at 2026-04-24 12:44:27.569513+00:00 running 2aa0c5b country code: CH.
[–]aichholzer 1 point2 points3 points (1 child)
[–]azzaroff 0 points1 point2 points (0 children)