tact-parser 0.4.3

Parser for TACT (Trusted Application Content Transfer) files used in Blizzard's NGDP distribution system
Documentation
1
2
3
4
5
6
7
8
use tact_parser::utils::jenkins3_hashpath;

#[test]
fn hashpath() {
    // Verified using WoW TACT root
    let r = jenkins3_hashpath("interface/cinematics/logo_1024.avi");
    assert_eq!(9993239704054654754, r);
}