hermes-tdata 0.1.1

Pure Rust parser for Telegram Desktop's tdata storage format. Decrypts local storage and extracts auth keys without Qt/C++ dependencies.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Storage utilities for reading tdata files
//!
//! Handles reading and parsing of key files, map files, and account data.

mod file_io;
mod key_data;
mod mtp_data;

pub use file_io::{get_absolute_path, get_default_tdata_path};
pub use key_data::{KeyInfo, decrypt_key_data, read_key_data};
pub use mtp_data::read_mtp_data;