0.0.1 • Published 5 years ago

data-to-sha256 v0.0.1

Weekly downloads
12
License
MIT
Repository
github
Last release
5 years ago

data-to-sha256

Calculates a SHA-256 of a given buffer/string

Install

Using yarn:

yarn add data-to-sha256

or using npm:

npm install data-to-sha256

Usage

const fs = require('fs')
const dataToSHA256 = require('data-to-sha256')

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

const hash = dataToSHA256(buffer)