Crypto benchmark fixes

master
data-man 2019-12-07 03:01:24 +05:00 committed by Andrew Kelley
parent 008e42f483
commit 80a72c225c
1 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
// zig run benchmark.zig --release-fast --override-lib-dir ..
const builtin = @import("builtin");
const std = @import("../std.zig");
const std = @import("std");
const time = std.time;
const Timer = time.Timer;
const crypto = std.crypto;
@ -67,7 +67,7 @@ pub fn benchmarkMac(comptime Mac: var, comptime bytes: comptime_int) !u64 {
var timer = try Timer.start();
const start = timer.lap();
while (offset < bytes) : (offset += in.len) {
Mac.create(key[0..], in[0..], key);
Mac.create(key[0..], in[0..], key[0..]);
}
const end = timer.read();
@ -94,7 +94,7 @@ pub fn benchmarkKeyExchange(comptime DhKeyExchange: var, comptime exchange_count
{
var i: usize = 0;
while (i < exchange_count) : (i += 1) {
_ = DhKeyExchange.create(out[0..], out, in);
_ = DhKeyExchange.create(out[0..], out[0..], in[0..]);
}
}
const end = timer.read();