OSX 10.11 Hash HELP!
#4
A byte is represented by two hexadecimal digits. So, when looking at your given entropy, the first byte is 0F.
As I mentioned higher, you need to take 64 bytes (= 128 hexadecimal digits) and not the full 128 bytes (= 256 hexadecimal digits).


As a bonus, take some time to look at the plist with a hexviewer. You'll see that entropy and salt begin with a sort of 'header' (0x4F10) followed by their length (in hex, not in dec).
After the salt, you'll see the 'header' 0x11 followed by two bytes. Those two are the iterations (Big Endian).


As another bonus, use this script to avoid headache in the future.


Messages In This Thread
OSX 10.11 Hash HELP! - by CactUs - 09-07-2018, 03:46 AM
RE: OSX 10.11 Hash HELP! - by Banaanhangwagen - 09-07-2018, 02:58 PM
RE: OSX 10.11 Hash HELP! - by CactUs - 09-07-2018, 07:52 PM
RE: OSX 10.11 Hash HELP! - by Banaanhangwagen - 09-07-2018, 09:01 PM
RE: OSX 10.11 Hash HELP! - by CactUs - 09-07-2018, 09:44 PM