tpm2 0.1.0

Core types and traits for communicating with a TPM 2.0
Documentation
//! Errors used thoughout this base crate.
//!
//! Currently, these errors are just unit structs as we get things working.
//!
//! TODO (): Flesh out these structures (or move them from `base`).

use core::convert::Infallible;

/// Any error which can happen when marshalling
pub struct MarshalError;

/// Any error which can happen when unmarshalling
pub struct UnmarshalError;

impl From<Infallible> for UnmarshalError {
    fn from(value: Infallible) -> Self {
        match value {}
    }
}

/// Specific error type corresponding to TPM_RC_HASH
pub struct HashError;

impl From<HashError> for UnmarshalError {
    fn from(_: HashError) -> Self {
        Self
    }
}