Typescript wrapper for SHA-512, including $6$ crypt format.
npm install sha512-crypt-ts
!Build
!Test and publish



npm install --save sha512-crypt-ts
`
#### Import module
`
import { sha512 } from 'sha512-crypt-ts';
`
#### Usage
`
sha512.crypt('password', 'saltsalt');
// This is equivalent to: printf "password" | mkpasswd --stdin --method=sha-512 --salt=saltsalt
// Returns $6$saltsalt$qFmFH.bQmmtXzyBY0s9v7Oicd2z4XSIecDzlB5KiA2/jctKu9YterLp8wwnSq.qc.eoxqOmSuNp2xS0ktL3nh/
``#### Documentation
Generated docs can be found at https://bedlaj.github.io/sha512-crypt-ts/modules/sha512.html