How to use the createHash function from crypto-js
Find comprehensive JavaScript crypto-js.createHash code examples handpicked from public code repositorys.
GitHub: adrienharnay/object-hash
110 111 112 113 114 115 116 117 118
function hash(object, options) { var hashingStream; if (options.algorithm !== 'passthrough') { hashingStream = crypto.createHash(options.algorithm); } else { hashingStream = new PassThrough(); }
152
1
1
crypto-js.AES is the most popular function in crypto-js (907 examples)