authenticode-parser 0.5.0

Bindings to the authenticode-parser library
Documentation
1
2
3
4
5
6
7
8
9
10
11
use authenticode_parser_sys as sys;

use crate::get_init_token;

#[test]
fn test_simple() {
    let _token = get_init_token();

    let auth = unsafe { sys::parse_authenticode(b"".as_ptr(), 0) };
    assert!(auth.is_null());
}