file-to-sha384
v0.0.1
Published
Calculates a SHA-384 of a given file. Single package for the browser and node.
Downloads
2
Maintainers
Readme
file-to-sha384
Calculates a SHA-384 of a given file
Install
Using yarn:
yarn add file-to-sha384
or using npm:
npm install file-to-sha384
Usage in the browser
import { blobToSHA384 } from 'file-to-sha384'
const hash = await blobToSHA384(fileInput.files[0])
Usage in node
For file paths
const { pathToSHA384 } = require('file-to-sha384')
const hash = await pathToSHA384('/path/to/file')
For buffers or strings
const fs = require('fs')
const { dataToSHA384 } = require('file-to-sha384')
const buffer = fs.readFileSync('/path/to/file')
const hash = dataToSHA384(buffer)