Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
benchmark: add/remove hash algorithm
add sha1, sha512 algorithm and remove md5
  • Loading branch information
Shigeki Ohtsu committed Apr 3, 2015
commit 12f72b5b81cc8076ae8f39e276dccd36ed0ff0d3
2 changes: 1 addition & 1 deletion benchmark/crypto/hash-stream-throughput.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ var crypto = require('crypto');

var bench = common.createBenchmark(main, {
writes: [500],
algo: [ 'sha256', 'md5' ],
algo: ['sha1', 'sha256', 'sha512'],
type: ['asc', 'utf', 'buf'],
len: [2, 1024, 102400, 1024 * 1024],
api: ['legacy', 'stream']
Expand Down