Calculates a SHA-512 of a given blob
npm install blob-to-sha512> Calculates a SHA-512 of a given blob
Using yarn:
``sh`
yarn add blob-to-sha512
or using npm:
`sh`
npm install blob-to-sha512
javascript
import blobToSHA512 from 'blob-to-sha512'const hash = await blobToSHA512(fileInput.files[0])
``