Skip to content

Commit

Permalink
benchmark: fix import
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmillr committed Sep 21, 2023
1 parent 4ae8f55 commit 55f880f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions benchmark/secp.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
const bench = require('micro-bmark');
const { run, mark } = bench; // or bench.mark
const crypto = require('crypto');
const { sha256 } = require('../../sha256');
const { hmac } = require('../../hmac');
const { sha256 } = require('../sha256');
const { hmac } = require('../hmac');
const { concatBytes } = require('../utils');

const hmac256 = (key, ...msgs) => {
Expand Down

0 comments on commit 55f880f

Please sign in to comment.