Subject: mysql password store
Has the latest version of unb changed its password settings? Reading back on old posts you would be mistaken for thinking that decoding hashed passwords would be easier than it is (I can't work it out). I found the sample password hashed code and typed in "password" as password and they didn't match. Instead I got: 179667ba1a7c515bA:51bf13e2e64be006 . This isn't the same as a base64 decode (see http://makcoder.sourceforge.net/demo/base64.php for example). I really need to get access to my passwords so that I can set up ancillary features using a single log in, please help as I've read everything and can't get it to work!

John
Link to this post
Show profile
It is added to the first MD5 hash and then, another MD5 hash is calculated over it all. (Obviously the salt must be stored with the second MD5 hash to be able to check it again. This makes the two extra bytes.) Reverse dictionaries would now also need an entry for every possible salt value in every possible combination. (It can be added at the beginning, at the end, and I insert it right into the middle.
)