#api #live2d-viewer-ex #lpk-loader

lpk

Decrypt the .lkp file from Live2dViewerEx

1 unstable release

new 0.0.0 Mar 31, 2025

#2491 in #api

MPL-2.0 license

22KB
446 lines

lpk

A Rust library for decrypting .lkp files from Live2dViewerEx.

Features

  • Decrypt .lkp files from Live2dViewerEx
  • Simple and easy-to-use API
  • Integration with anyhow for error handling

Installation

Add this to your Cargo.toml:

[dependencies]
lpk = { path = "../lpk-core" }
anyhow = "1.0"

Usage

use lpk::LpkLoader;
use anyhow::Result;
use std::path::Path;

fn main() -> Result<()> {
    let loader = LpkLoader::new(Path::new("example.lkp"))?;
    // Process the decrypted data
    Ok(())
}

Dependencies

~8MB
~141K SLoC