hardware-enclave 0.1.4

Hardware-backed key management — macOS Secure Enclave, Windows TPM 2.0, Linux TPM/keyring — plus in-process memory protection
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright 2026 Jay Gowdy
// SPDX-License-Identifier: MIT

//! TPM bridge for WSL (JSON-RPC over stdin/stdout).
//!
//! On Windows, a bridge server reads JSON-RPC requests from stdin and writes
//! responses to stdout. On Linux/WSL, the client spawns the Windows bridge
//! binary and communicates via the same protocol.
#![allow(dead_code, unused_imports, unused_qualifications, unreachable_patterns)]

mod client;
mod protocol;

pub use client::*;
pub use protocol::*;