View on GitHub

web3js-cn

web3.sha3

使用keccak-256哈希算法,计算给定字符串的哈希值。

调用:

web3.sha3(string, options)

参数:

返回值:

示例:

//省略初始化过程
var hash = web3.sha3("Some string to be hashed");
console.log(hash); 
var hashOfHash = web3.sha3(hash, {encoding: 'hex'});
console.log(hashOfHash); 

教程推荐: