UNPKG

379 BJavaScriptView Raw
1// Copyright 2017-2023 @polkadot/util-crypto authors & contributors
2// SPDX-License-Identifier: Apache-2.0
3
4import { blake2AsU8a } from "../blake2/index.js";
5import { keccakAsU8a } from "../keccak/index.js";
6export function hasher(hashType, data, onlyJs) {
7 return hashType === 'keccak' ? keccakAsU8a(data, undefined, onlyJs) : blake2AsU8a(data, undefined, undefined, onlyJs);
8}
\No newline at end of file