(the above example is when using a longer salt and longer key size, both 64)
This is due to the fact that the Base64 algorithm adds line breaks after every 76 character.
But these line breaks makes the Base64 invalid when we call the verify() method with this kind of values.
My proposal is to remove them (the line breaks) during generation of the hash (generate() method) and also clean them out before base64 decoding (decode() method)