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
#![allow(non_snake_case)]

use crate::tlcl::tpm20::{constants::TPM2_Clear, tpm_get_response_code};

pub fn TlclForceClear() -> u32 {
  tpm_get_response_code(TPM2_Clear, std::ptr::null())
}