File: encrypt_message.rs

package info (click to toggle)
rust-sequoia-openpgp 2.0.0-4
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 9,548 kB
  • sloc: sh: 6; makefile: 2
file content (40 lines) | stat: -rw-r--r-- 1,169 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
use criterion::{criterion_group, BenchmarkId, Criterion, Throughput};

use sequoia_openpgp as openpgp;
use openpgp::cert::Cert;
use openpgp::parse::Parse;

use crate::common::encrypt;

pub fn encrypt_to_testy(bytes: &[u8]) {
    let testy =
        Cert::from_bytes(&include_bytes!("../tests/data/keys/testy.pgp")[..])
            .unwrap();
    encrypt::encrypt_to_cert(bytes, &testy).unwrap();
}

pub fn encrypt_with_password(bytes: &[u8]) {
    let password = "ściśle tajne";
    encrypt::encrypt_with_password(bytes, password).unwrap();
}

fn bench_encrypt(c: &mut Criterion) {
    let mut group = c.benchmark_group("encrypt message");

    for message in encrypt::messages() {
        group.throughput(Throughput::Bytes(message.len() as u64));
        group.bench_with_input(
            BenchmarkId::new("password", message.len()),
            &message,
            |b, m| b.iter(|| encrypt_with_password(m)),
        );
        group.bench_with_input(
            BenchmarkId::new("cert", message.len()),
            &message,
            |b, m| b.iter(|| encrypt_to_testy(m)),
        );
    }
    group.finish();
}

criterion_group!(benches, bench_encrypt);