libcros 0.6.6

A Rust library that provides easy-to-use functions for interacting with a Chrome device
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![allow(non_snake_case)]

use crate::tlcl::constants::TPM_SUCCESS;

pub fn TlclPhysicalPresenceCMDEnable() -> u32 {
  TPM_SUCCESS
}

pub fn TlclAssertPhysicalPresence() -> u32 {
  TPM_SUCCESS
}

pub fn TlclSetEnable() -> u32 {
  TPM_SUCCESS
}