Skip to content

Commit

Permalink
benchmark: add/remove hash algorithm
Browse files Browse the repository at this point in the history
add sha1, sha512 algorithm and remove md5

PR-URL: #1325
Reviewed-By: Fedor Indutny <[email protected]>
Reviewed-By: Ben Noordhuis <[email protected]>
  • Loading branch information
Shigeki Ohtsu committed Apr 4, 2015
1 parent f782824 commit 1c709f3
Showing 1 changed file with 1 addition and 1 deletion.
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

0 comments on commit 1c709f3

Please sign in to comment.