mirror of
https://github.com/saymrwulf/curve25519-dalek-source.git
synced 2026-09-04 20:24:10 +00:00
50 lines
1.2 KiB
Rust
50 lines
1.2 KiB
Rust
// -*- mode: rust; -*-
|
|
//
|
|
// This file is part of x25519-dalek.
|
|
// Copyright (c) 2017-2019 isis agora lovecruft
|
|
// Copyright (c) 2019 DebugSteven
|
|
// See LICENSE for licensing information.
|
|
//
|
|
// Authors:
|
|
// - isis agora lovecruft <isis@patternsinthevoid.net>
|
|
// - DebugSteven <debugsteven@gmail.com>
|
|
|
|
//! Benchmark the Diffie-Hellman operation.
|
|
|
|
#[macro_use]
|
|
extern crate criterion;
|
|
extern crate curve25519_dalek;
|
|
extern crate rand_os;
|
|
extern crate x25519_dalek;
|
|
|
|
use criterion::Criterion;
|
|
|
|
use curve25519_dalek::montgomery::MontgomeryPoint;
|
|
|
|
use rand_os::OsRng;
|
|
|
|
use x25519_dalek::EphemeralPublic;
|
|
use x25519_dalek::EphemeralSecret;
|
|
|
|
fn bench_diffie_hellman(c: &mut Criterion) {
|
|
let mut csprng: OsRng = OsRng::new().unwrap();
|
|
let bob_secret: EphemeralSecret = EphemeralSecret::new(&mut csprng);
|
|
let bob_public: EphemeralPublic = EphemeralPublic::from(&bob_secret);
|
|
|
|
c.bench_function("diffie_hellman", move |b| {
|
|
b.iter_with_setup(
|
|
|| EphemeralSecret::new(&mut csprng),
|
|
|alice_secret| alice_secret.diffie_hellman(&bob_public),
|
|
)
|
|
});
|
|
}
|
|
|
|
criterion_group!{
|
|
name = x25519_benches;
|
|
config = Criterion::default();
|
|
targets =
|
|
bench_diffie_hellman,
|
|
}
|
|
criterion_main!{
|
|
x25519_benches,
|
|
}
|