2个版本
0.1.1 | 2024年5月3日 |
---|---|
0.1.0 | 2024年5月3日 |
#572 in 数据结构
14KB
191 行
签名决策树
一个基于字节和掩码的决策引擎,用于创建通用签名匹配的字节序列(以及可能的比较掩码),纯Rust实现。
特性
- 非常快的签名匹配。
- 支持基于字节和掩码的签名。
- 无依赖。
使用
[dependencies]
dectree-rs = "0.1.1"
示例
use dectree_rs::SignatureDecisionTree;
fn main() {
let signature_base = vec![0x55, 0xe9, 0xd8, 0x01, 0xfe, 0xff, 0x32, 0x77, 0x89, 0x4f, 0x55];
let mut tree = SignatureDecisionTree::new();
tree.add_signature(signature_base.clone(), None, None);
tree.get_signature(vec![0x55, 0xe9], None);
tree.add_signature(signature_base.clone().into_iter().take(7).collect(), None, Some(signature_base.clone().into_iter().take(7).collect()));
tree.add_signature(signature_base.clone().into_iter().take(4).collect(), None, Some(signature_base.clone().into_iter().take(4).collect()));
tree.add_signature([signature_base.clone(), vec![0xfe, 0x38]].concat(), None, Some([signature_base.clone(), vec![0xfe, 0x38]].concat()));
assert_eq!(tree.get_signature(vec![0x55, 0xe9, 0xd8, 0x01, 0xfe, 0xff, 0x32, 0x00, 0x99, 0x36, 0x5f, 0x21, 0xfd], None), Some(signature_base.clone().into_iter().take(7).collect()));
assert_eq!(tree.get_signature(vec![0x55, 0xe9, 0xd8, 0x01, 0xfe, 0xff, 0x32], None), Some(signature_base.clone().into_iter().take(7).collect()));
assert_eq!(tree.get_signature(vec![0x55, 0xe9, 0xd8, 0x01, 0xfe, 0x00], None), Some(signature_base.clone().into_iter().take(4).collect()));
assert_eq!(tree.get_signature(vec![0x55], None), None);
}
许可
本项目采用Apache License 2.0许可 - 请参阅LICENSE文件获取详细信息
作者
- Clement Wanjau [email protected]