datex_core/utils/
rust_crypto.rs

1
2// default rust implementation for crypto
3
4use super::crypto::Crypto;
5
6pub struct RustCrypto {}
7
8impl Crypto for RustCrypto {
9    fn encrypt_aes(&self, _buffer:&[u8]) -> Vec<u8> {
10        todo!()
11    }
12}