browserpass-host-rs 0.6.3

Rust port of browserpass-native (PROTOCOL.md v3.1.2) + extension actions for OTP, whole-store search, and a file-state segmented download manager.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! browserpass-host-rs — Rust port of [browserpass-native](https://github.com/browserpass/browserpass-native)
//! plus zpwrchrome extensions (otp, search, segmented download manager).
//!
//! The `ported/` tree is a strict 1:1 port of the upstream Go source — every
//! file mirrors a single upstream Go file by stem and relative subpath, every
//! fn cites `// go:NN` line origins, every Go comment carries over verbatim.
//!
//! The `extensions/` tree is additive Rust-only code: features upstream
//! browserpass-native does not have. Extension actions are dispatched by
//! `bin/browserpass_host_rs.rs` *before* falling through to the ported
//! dispatcher, so the upstream protocol is unchanged.

pub mod frame;
pub mod ported;
pub mod extensions;
pub mod diag;