datex_core/utils/
crypto.rs

1
2
3
4

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