Add a crate meant to one day factorize some common code to timing side channels
This commit is contained in:
parent
5eab981eec
commit
a331fdd76e
9
basic_timing_cache_channel/Cargo.toml
Normal file
9
basic_timing_cache_channel/Cargo.toml
Normal 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]
|
15
basic_timing_cache_channel/src/lib.rs
Normal file
15
basic_timing_cache_channel/src/lib.rs
Normal 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);
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user