0.0.1 • Published 5 years ago

file-to-sha512 v0.0.1

Weekly downloads
2,574
License
MIT
Repository
github
Last release
5 years ago

file-to-sha512

Calculates a SHA-512 of a given file

Install

Using yarn:

yarn add file-to-sha512

or using npm:

npm install file-to-sha512

Usage in the browser

import { blobToSHA512 } from 'file-to-sha512'

const hash = await blobToSHA512(fileInput.files[0])

Usage in node

For file paths

const { pathToSHA512 } = require('file-to-sha512')

const hash = await pathToSHA512('/path/to/file')

For buffers or strings

const fs = require('fs')
const { dataToSHA512 } = require('file-to-sha512')

const buffer = fs.readFileSync('/path/to/file')

const hash = dataToSHA512(buffer)