zpwrchrome-host 0.10.2

Native messaging host for the zpwrchrome Chrome extension. Rust port of browserpass-native (PROTOCOL.md v3.1.2) + extension actions for OTP, whole-store search, identity/CC autofill, and a file-state segmented download manager.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Additive features NOT present in upstream browserpass-native.
//!
//! Code here is genuinely new functionality (download manager, OTP shell-out,
//! subseq search). It does not port any Go source and is not constrained by
//! the strict-port discipline that governs `ported/`.
//!
//! Modules here are invoked by the host binary as extra actions outside the
//! upstream PROTOCOL.md action set (`dl.add`, `dl.list`, `otp`, `search`,
//! `run.spawn`, `zcite.save`).
//! Upstream browserpass-extension never sends these actions so wire
//! compatibility with the upstream is preserved.

pub mod dl;
pub mod host;
pub mod otp;
pub mod run_command;
pub mod search;
pub mod zcite;