tpm2 0.1.0

Core types and traits for communicating with a TPM 2.0
Documentation
1
2
3
4
5
6
7
8
use crate::Tpm2bDigest;

/// Random bytes retuned by the RNG
#[doc(alias("GetRandom_Out"))]
#[derive(Clone, Copy, Debug)]
pub struct GetRandom<'a> {
    pub random_bytes: Tpm2bDigest<'a>,
}