I saw on Which is the encryption method used on /etc/shadow? that encrypted passwords starting with $6$ uses SHA-512 encryption.
Here is an example :
$6$5l70Gupv$xBTxhCSexudn5jJ9hampIfTK0KIR3nqK1K1Rxye.OA5obtKArO7jgftjJtVSdp31MPxItEPmOuWhbgBvp0wqn.
xBTxhCSexudn5jJ9hampIfTK0KIR3nqK1K1Rxye.OA5obtKArO7jgftjJtVSdp31MPxItEPmOuWhbgBvp0wqn.
is supposed to be the actual hash. 5l70Gupv
being the salt.
However this does not look like a SHA-512 hash to me. Here is one generated from this site :
f8e3183d38e6c51889582cb260ab825252f395b4ac8fb0e6b13e9a71f7c10a80d5301e4a949f2783cb0c20205f1d850f87045f4420ad2271c8fd5f0cd8944be3
What am I missing here ?