Tal Folkman
Tal Folkman

Reputation: 2581

encryption of email in GitHub Archive

I queried GitHub archive and got the mail encrypted.

The mail that I got in the query - [email protected]

The mail it suppose to be - [email protected]

Anyone knows how to decrypt it?

Upvotes: 1

Views: 61

Answers (1)

Jossef Harush Kadouri
Jossef Harush Kadouri

Reputation: 34257

Looks like this is sha1 hash and not an encryption.

sha1("phil12328") -> "9b2aaf20c3f2c0c9b21ada60e9bca6ef34b3dbc7"

Since hashes are one-way functions, there's no easy way going backward to the original input. However, there are online tools doing reverse lookup like http://reverse-hash-lookup.online-domain-tools.com/ where you give them hash and if they have a match you get a potential matching input

Upvotes: 2

Related Questions