kbparse-lib

Crates.iokbparse-lib
lib.rskbparse-lib
version0.3.1
sourcesrc
created_at2023-09-30 00:28:30.319766
updated_at2023-10-11 18:42:44.439216
descriptionApple Keybag parsing libray
homepagehttps://github.com/HBchevelle68/kbparse
repositoryhttps://github.com/HBchevelle68/kbparse
max_upload_size
id988284
size15,184
HBchevelle68 (HBchevelle68)

documentation

README

kbparse-lib

This crate provides a lightweight ability to parse Apple user keybags (version 5). This crate has no dependencies other than std.

// Simplified example
use kbparse_lib::keybag;
fn main() -> Result<(), Box<dyn std::error::Error>> {
    let args: Vec<String> = std::env::args().collect();
    let bytes = std::fs::read(&args[1])?;
    let kb = keybag::Keybagv5::parse(&bytes)?;
    println!("{:#?}", kb);
    Ok(())
}

Platform Support

  • macOS-14-aarch64 (arm64e)
  • macOS-13-aarch64 (arm64e)
  • macOS-13-x86_64
  • macOS-12-x86_64
  • macOS-12-aarch64 (arm64e)
  • macOS-11-x86_64

Toolchain Support

  • aarch64-apple-darwin
  • x86_64-apple-darwin
Commit count: 69

cargo fmt