Can someone explain what Payload pbkdf2 information means
#2
Hi simonh, let me try to help you.

From what it seems the program or site that you're using is doing a PKBDF2 derivation (imagine this as a simple hash, like MD5 or SHA1, only purposely 5000x slower).
This payload should also have a salt, which may be contained somewherre within the payload line (therefore the salt is public) or it might be something related like your whatevercoin address.

Salt is just a simple tad of information added to the text that you want to hash to avoid pre-calculated attacks, aka rainbow tables. For WPA2 password the salt is, along with other stuff, your network's name(SSID), on cryptocurrency I supposed they use your public address as salt, but it might be the string "MpvvIebsIQ9rrdtnKqeas", on Linux for example the salt is just a piece of text that precedes the actual payload of the PBKDF2 funcion. (Well, tbh it's not PBKDF2, but it could be just the same)

Now long story made short, seems like you're using a wrong password or maybe wrong public wallet address.
Reply


Messages In This Thread
RE: Can someone explain what Payload pbkdf2 information means - by lint - 05-13-2019, 01:15 PM