mirror of
https://github.com/Astatin3/unshell-nodes-rs.git
synced 2026-06-09 00:28:00 -06:00
9 lines
162 B
Rust
9 lines
162 B
Rust
|
|
pub trait Layer {
|
||
|
|
fn encode(&mut self, data: &[u8]) -> Vec<u8>;
|
||
|
|
fn decode(&mut self, data: &[u8]) -> Vec<u8>;
|
||
|
|
}
|
||
|
|
|
||
|
|
pub mod base64;
|
||
|
|
|
||
|
|
pub use base64::Base64;
|