datex_core/utils/
crypto.rs

1
2pub trait Crypto {
3	fn encrypt_aes(&self, buffer:&[u8]) -> Vec<u8>;
4}