@plugnet/util-crypto
Version:
A collection of useful crypto utilities for @plugnet
17 lines (16 loc) • 472 B
TypeScript
/// <reference types="node" />
/**
* @name keccakAsHex
* @summary Creates a keccak hex string from the input.
* @description
* From either a `string` or a `Buffer` input, create the keccak and return the result as a `0x` prefixed hex string.
* @example
* <BR>
*
* ```javascript
* import { keccakAsHex } from '@plugnet/util-crypto';
*
* keccakAsHex('123'); // => 0x...
* ```
*/
export default function keccakAsHex(value: Buffer | Uint8Array | string): string;