Asylo
enclave_config_util.h
Go to the documentation of this file.
1 /*
2  *
3  * Copyright 2017 Asylo authors
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  * http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  */
18 
19 #ifndef ASYLO_PLATFORM_CORE_ENCLAVE_CONFIG_UTIL_H_
20 #define ASYLO_PLATFORM_CORE_ENCLAVE_CONFIG_UTIL_H_
21 
22 #include "asylo/enclave.pb.h"
23 
24 namespace asylo {
25 
26 /// \deprecated
27 /// Sets critical uninitialized fields in `config` to default values.
28 ///
29 /// \param host_config Values to set in the `host_config` field of
30 /// `config`.
31 /// \param config[out] EnclaveConfig object to populate.
32 void SetEnclaveConfigDefaults(const HostConfig &host_config,
33  EnclaveConfig *config);
34 
35 /// Sets critical uninitialized fields in `config` to default values.
36 ///
37 /// \param config[out] EnclaveConfig object to populate.
38 void SetEnclaveConfigDefaults(EnclaveConfig *config);
39 
40 /// \deprecated
41 /// Returns an EnclaveConfig proto with critical fields initialized to default
42 /// values.
43 ///
44 /// \param host_config This parameter is ignored.
45 /// \return An EnclaveConfig proto with critical fields initialized to their
46 /// default values.
48 
49 /// Returns an EnclaveConfig proto with critical fields initialize to default
50 /// values.
51 ///
52 /// \return An EnclaveConfig proto with critical fields initialized to their
53 /// default values.
55 
56 } // namespace asylo
57 
58 #endif // ASYLO_PLATFORM_CORE_ENCLAVE_CONFIG_UTIL_H_
void SetEnclaveConfigDefaults(const HostConfig &host_config, EnclaveConfig *config)
EnclaveConfig CreateDefaultEnclaveConfig()
Returns an EnclaveConfig proto with critical fields initialize to default values. ...
ABSL_CONST_INIT const char kStatusMoveAssignmentMsg[]
void SetEnclaveConfigDefaults(EnclaveConfig *config)
Sets critical uninitialized fields in config to default values.
EnclaveConfig CreateDefaultEnclaveConfig(const HostConfig &host_config)