Update the benchmarks

This commit is contained in:
Rodolphe Bréard 2024-04-20 18:24:30 +02:00
parent 7cc204f046
commit d7ee6667f9
2 changed files with 4 additions and 4 deletions

View file

@ -1,6 +1,6 @@
mod data; mod data;
use coffio::{CipherBox, DataContext, InputKeyMaterialList, KeyContext}; use coffio::{Coffio, DataContext, InputKeyMaterialList, KeyContext};
use criterion::{criterion_group, criterion_main, BenchmarkId, Criterion}; use criterion::{criterion_group, criterion_main, BenchmarkId, Criterion};
use data::{ use data::{
Data, AES128GCM_SHA256_INPUTS, DATA_CTX, IKML_AES128GCM_SHA256, IKML_XCHACHA20POLY1305_BLAKE3, Data, AES128GCM_SHA256_INPUTS, DATA_CTX, IKML_AES128GCM_SHA256, IKML_XCHACHA20POLY1305_BLAKE3,
@ -23,7 +23,7 @@ fn decrypt_coffio(ikml: &str, input: &str) {
let ikm = InputKeyMaterialList::import(ikml).unwrap(); let ikm = InputKeyMaterialList::import(ikml).unwrap();
let key_ctx = KeyContext::from(KEY_CTX); let key_ctx = KeyContext::from(KEY_CTX);
let data_ctx = DataContext::from(DATA_CTX); let data_ctx = DataContext::from(DATA_CTX);
let cb = CipherBox::new(&ikm); let cb = Coffio::new(&ikm);
if let Err(e) = cb.decrypt(&key_ctx, &data_ctx, input) { if let Err(e) = cb.decrypt(&key_ctx, &data_ctx, input) {
assert!(false, "{e}"); assert!(false, "{e}");
} }

View file

@ -1,6 +1,6 @@
mod data; mod data;
use coffio::{CipherBox, DataContext, InputKeyMaterialList, KeyContext}; use coffio::{Coffio, DataContext, InputKeyMaterialList, KeyContext};
use criterion::{criterion_group, criterion_main, BenchmarkId, Criterion}; use criterion::{criterion_group, criterion_main, BenchmarkId, Criterion};
use data::{Data, DATA_CTX, IKMLS, KEY_CTX, MEASUREMENT_TIME, PLAIN_INPUTS}; use data::{Data, DATA_CTX, IKMLS, KEY_CTX, MEASUREMENT_TIME, PLAIN_INPUTS};
use std::time::Duration; use std::time::Duration;
@ -9,7 +9,7 @@ fn encrypt_coffio(ikml: &str, input: &str) {
let ikm = InputKeyMaterialList::import(ikml).unwrap(); let ikm = InputKeyMaterialList::import(ikml).unwrap();
let key_ctx = KeyContext::from(KEY_CTX); let key_ctx = KeyContext::from(KEY_CTX);
let data_ctx = DataContext::from(DATA_CTX); let data_ctx = DataContext::from(DATA_CTX);
let cb = CipherBox::new(&ikm); let cb = Coffio::new(&ikm);
if let Err(e) = cb.encrypt(&key_ctx, &data_ctx, input) { if let Err(e) = cb.encrypt(&key_ctx, &data_ctx, input) {
assert!(false, "{e}"); assert!(false, "{e}");
} }