Initial commit
All checks were successful
CI / build (push) Successful in 27s
CI / no-std (push) Successful in 25s
CI / clippy (push) Successful in 26s
CI / test (push) Successful in 43s

This commit is contained in:
2026-02-21 09:01:54 +00:00
committed by Kris Kwiatkowski
commit dac2ea8c95
80 changed files with 11796 additions and 0 deletions

15
src/cipher.rs Normal file
View File

@@ -0,0 +1,15 @@
use crate::application_data::ApplicationData;
use crate::extensions::extension_data::supported_groups::NamedGroup;
use p256::ecdh::SharedSecret;
pub struct CryptoEngine {}
#[allow(clippy::unused_self, clippy::needless_pass_by_value)]
impl CryptoEngine {
pub fn new(_group: NamedGroup, _shared: SharedSecret) -> Self {
Self {}
}
#[allow(dead_code)]
pub fn decrypt(&self, _: &ApplicationData) {}
}