开发者

How does one decode Base64? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, ov开发者_开发百科erly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center. Closed 10 years ago.

As seen here, they have the line ZG9udGJlYWhhdGVyc3RhcnR1cCtoYWNrZXJuZXdzQGdtYWlsLmNvbQ==.

How would one go about decoding this line of Base64?


Base64-decode it. For example, put it in this online decoder: http://www.opinionatedgeek.com/dotnet/tools/base64decode/

BTW this is not encryption, it's encoding.


This is a simple base64 encoding, one way to decode it is to use openssl

echo 'ZG9udGJlYWhhdGVyc3RhcnR1cCtoYWNrZXJuZXdzQGdtYWlsLmNvbQ==' | openssl base64 -d


Use a base64 decoder. Or - specify a language you would like to use and I can give you some example code.

BTW: I decoded this using this online decoder:

http://www.convertstring.com/EncodeDecode/Base64Decode

It decodes to

dontbeahaterstartup+hackernews@gmail.com


Base64 encoding is explained here: Base64 decoder

ZG9udGJlYWhhdGVyc3RhcnR1cCtoYWNrZXJuZXdzQGdtYWlsLmNvbQ== => dontbeahaterstartup+hackernews@gmail.com
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜