I am looking to create/use a javascript implementation of passlib.hash.sha256_crypt where I can specify a salt and password and receive a hash that is in the $5${salt}${checksum}
format. However all of the javascript implementations I have seen return the output in 64bytes (like what this site returns).
Is there a javascript implementation that returns the $5${salt}${checksum}
format? Or at least a way I can convert to this format?