Update the benchmarks
This commit is contained in:
parent
7cc204f046
commit
d7ee6667f9
2 changed files with 4 additions and 4 deletions
|
@ -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}");
|
||||||
}
|
}
|
||||||
|
|
|
@ -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}");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue