1 // Copyright 2021 Google LLC 2 // 3 // Licensed under the Apache License, Version 2.0 (the "License"); you may not 4 // use this file except in compliance with the License. You may obtain a copy of 5 // the License at 6 // 7 // https://www.apache.org/licenses/LICENSE-2.0 8 // 9 // Unless required by applicable law or agreed to in writing, software 10 // distributed under the License is distributed on an "AS IS" BASIS, WITHOUT 11 // WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the 12 // License for the specific language governing permissions and limitations under 13 // the License. 14 15 #ifndef DICE_CONFIG_STANDALONE_DICE_CONFIG_H_ 16 #define DICE_CONFIG_STANDALONE_DICE_CONFIG_H_ 17 18 // The standalone config is only used for testing. In particular, it is used 19 // for tests that focus on the core aspects of the library and not the ops. 20 // These value aren't yet used meaningfully in such tests so are given 21 // placeholder values. 22 #define DICE_PUBLIC_KEY_BUFFER_SIZE 1 23 #define DICE_PRIVATE_KEY_BUFFER_SIZE 1 24 #define DICE_SIGNATURE_BUFFER_SIZE 1 25 #define DICE_PROFILE_NAME NULL 26 27 #endif // DICE_CONFIG_STANDALONE_DICE_CONFIG_H_ 28