polkadot-js/ts

View on GitHub
types/keccak/keccak-tests.ts

Summary

Maintainability
A
0 mins
Test Coverage
import createKeccak from 'keccak';
 
const context = createKeccak('keccak256');
 
context.update(Buffer.from([1, 2, 3, 4, 5]));
context.update('hello world');
context.digest();