What kind of hash is this?
#14
Just a short note for those few user here running OS X 10.9.

While decoding hash and salt on my Linux box with
echo "[saltORhash]" | base64 -d | xxd -p
worked fine, I got funny results when running it on OS X. Checking the man pages helped - as usual. Using base64 (Linux) -d is equal to --decode - the one you want.
Running OS X base64 -d is verbose (--debug) (https://developer.apple.com/library/mac/...e64.1.html). You want to use -D (--decode) so it reads:
echo "[saltORhash]" | base64 -D | xxd -p


Messages In This Thread
What kind of hash is this? - by Tinnuel - 12-05-2013, 08:04 PM
RE: What kind of hash is this? - by magnum - 12-06-2013, 12:23 AM
RE: What kind of hash is this? - by Tinnuel - 12-06-2013, 04:53 PM
RE: What kind of hash is this? - by Si2006 - 12-06-2013, 10:26 PM
RE: What kind of hash is this? - by phantom23 - 01-03-2014, 02:39 AM
RE: What kind of hash is this? - by magnum - 01-03-2014, 12:35 PM
RE: What kind of hash is this? - by philsmd - 01-03-2014, 02:02 PM
RE: What kind of hash is this? - by phantom23 - 01-03-2014, 07:56 PM
RE: What kind of hash is this? - by philsmd - 01-03-2014, 08:30 PM
RE: What kind of hash is this? - by phantom23 - 01-03-2014, 10:35 PM
RE: What kind of hash is this? - by vrposter - 01-15-2014, 12:42 PM
RE: What kind of hash is this? - by philsmd - 01-15-2014, 02:57 PM
RE: What kind of hash is this? - by vrposter - 01-15-2014, 03:45 PM
RE: What kind of hash is this? - by vrposter - 01-16-2014, 07:49 PM
RE: What kind of hash is this? - by ammonsphoto - 02-21-2014, 05:34 PM
RE: What kind of hash is this? - by ammonsphoto - 02-21-2014, 06:02 PM
RE: What kind of hash is this? - by ChaDerson - 04-05-2014, 07:26 AM