hardware-enclave 0.1.1

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

//! Re-exports signing detection from enclaveapp-core for macOS keychain use.
//!
//! The canonical implementation lives in `crate::internal::core::signing` so it's
//! available on all platforms. This module re-exports it for use by the
//! macOS-specific keychain code within this crate.
#![allow(dead_code, unused_imports, unused_qualifications, unreachable_patterns)]

pub use crate::internal::core::signing::{ensure_safe_app_name, is_binary_signed};