underhill_confidentiality/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

//! A source of information for Underhill confidentiality configuration.

#![forbid(unsafe_code)]
#![no_std]

#[cfg(feature = "std")]
extern crate std;
#[cfg(feature = "std")]
mod getters;
#[cfg(feature = "std")]
pub use getters::*;

/// The name of the environment variable that indicates whether the current VM is a confidential VM.
pub const OPENHCL_CONFIDENTIAL_ENV_VAR_NAME: &str = "OPENHCL_CONFIDENTIAL";

/// The legacy name of the environment variable that indicates whether the
/// current VM is a confidential VM.
pub const LEGACY_CONFIDENTIAL_ENV_VAR_NAME: &str = "UNDERHILL_CONFIDENTIAL";

/// The name of the environment variable that indicates whether confidential debugging is enabled.
pub const OPENHCL_CONFIDENTIAL_DEBUG_ENV_VAR_NAME: &str = "OPENHCL_CONFIDENTIAL_DEBUG";

/// The legacy name of the environment variable that indicates whether
/// confidential debugging is enabled.
pub const LEGACY_CONFIDENTIAL_DEBUG_ENV_VAR_NAME: &str = "UNDERHILL_CONFIDENTIAL_DEBUG";