4 个版本 (2 个重大更改)

使用旧 Rust 2015

0.2.1 2018年6月3日
0.2.0 2018年3月26日
0.1.0 2017年11月23日
0.0.1 2016年2月6日

#2 in #dlc

MIT 许可证

15KB
217

dlc-decrypter

一个简单的库,用于将 dlc 文件解码为可读格式。

用法

Cargo.toml 中添加 dlc_decrypter 作为依赖项

[dependencies]
dlc-decrypter = "0.2.1"

使用 `dlc_decrypter::DlcDecoder` 解密 .dlc 文件或数据包

extern crate dlc_decrypter;

fn main() {
    // Create the DlcDecoder
    let dd = dlc_decrypter::DlcDecoder::new();

    // loop over all arguments for the programm
    // skip the first one because it's the programm
    // own name
    for arg in std::env::args().skip(1) {
        // hand over the file path
        let dlc = dd.from_file(arg);

        // print the result
        println!("DLC: {:?}", dlc);
    }
}

感谢

许可证

MIT 许可证 下分发。


lib.rs:

一个简单的库,用于将 dlc 文件解码为可读格式。

用法

Cargo.toml 中添加 dlc_decrypter 作为依赖项

[dependencies]
dlc-decrypter = "0.2.0"

使用 dlc_decrypter::DlcDecoder 解密 .dlc 文件或数据包

extern crate dlc_decrypter;

fn main() {
    // Create the DlcDecoder
    let dd = dlc_decrypter::DlcDecoder::new();

    // loop over all arguments for the programm
    // skip the first one because it's the programm
    // own name
    for arg in std::env::args().skip(1) {
        // hand over the file path
        let dlc = dd.from_file(arg);

        // print the result
        println!("DLC: {:?}", dlc);
    }
}

感谢

许可证

MIT 许可证 下分发。

依赖关系

~21–33MB
~570K SLoC