tss-esapi 5.0.1

Rust-native wrapper around TSS 2.0 Enhanced System API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright 2020 Contributors to the Parsec project.
// SPDX-License-Identifier: Apache-2.0

use tss_esapi::utils;

mod common;
use common::create_ctx_without_session;

#[test]
fn get_tpm_vendor() {
    let mut context = create_ctx_without_session();

    utils::get_tpm_vendor(&mut context).unwrap();
}