js-bigchaindb-driver/src/sha256Hash.js

15 lines
375 B
JavaScript
Raw Normal View History

// Copyright BigchainDB GmbH and BigchainDB contributors
// SPDX-License-Identifier: (Apache-2.0 AND CC-BY-4.0)
// Code is Apache-2.0 and docs are CC-BY-4.0
/* eslint-disable camelcase */
import { sha3_256 } from 'js-sha3'
2017-04-26 15:58:19 +02:00
export default function sha256Hash(data) {
return sha3_256
2017-04-26 15:58:19 +02:00
.create()
.update(data)
2017-06-12 16:57:29 +02:00
.hex()
2017-04-26 15:58:19 +02:00
}
/* eslint-enable camelcase */