I encoded(sha512 hash)the password string "hello" using the salt string "world" and saved the string in a file.
hex: 2b83319d3e78544e4430c4f5621968fee8b6ffa1254678b2c6fb98f7f79ff16afee2da909a7bb741488ca3bacbbf6cec8fd226c5a52eef805ea65a352e2ece8e
base64: K4MxnT54VE5EMMT1Yhlo/ui2/6ElRniyxvuY9/ef8Wr+4tqQmnu3QUiMo7rLv2zsj9ImxaUu74Beplo1Li7Ojg==
Now in my program i have the above encoded value of salted "hello" and the fresh password string "hello". I have to again encode "hello" using same salt and compare the output. Is it possible to extract the salt from the above output?