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::tpm12::{constants::TPM_ORD_ForceClear, tpm_get_response_code};

pub fn TlclForceClear() -> u32 {
  tpm_get_response_code(TPM_ORD_ForceClear, core::ptr::null())
}