Add a crate meant to one day factorize some common code to timing side channels

This commit is contained in:
Guillume DIDIER 2020-10-22 14:49:09 +02:00
parent 5eab981eec
commit a331fdd76e
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,9 @@
[package]
name = "basic_timing_cache_channel"
version = "0.1.0"
authors = ["GuillaumeDIDIER <guillaume.didier95@hotmail.fr>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

View File

@ -0,0 +1,15 @@
// TODO
// Common logic for the ability to calibrate along slices
// Core issues should be orthogonal
// Extend to multithread ?
// Should be used by F+F and non Naive F+R
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
assert_eq!(2 + 2, 4);
}
}