/*
* corePKCS11 v3.5.0
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* SPDX-License-Identifier: MIT
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
* this software and associated documentation files (the "Software"), to deal in
* the Software without restriction, including without limitation the rights to
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
* the Software, and to permit persons to whom the Software is furnished to do so,
* subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
/**
* @file core_pkcs11_config_defaults.h
* @brief List of configuration macros for the corePKCS11 library along with
* their default values.
*/
#ifndef CORE_PKCS11_CONFIG_DEFAULTS_H_
#define CORE_PKCS11_CONFIG_DEFAULTS_H_
/* *INDENT-OFF* */
#ifdef __cplusplus
extern "C" {
#endif
/* *INDENT-ON* */
/**
* @brief Definitions mapping deprecated configuration macro names to their current equivalent
* configurations for backwards compatibility of API.
*/
#ifndef DOXYGEN
#ifdef PKCS11_MALLOC
#define pkcs11configPKCS11_MALLOC PKCS11_MALLOC
#endif
#ifdef PKCS11_FREE
#define pkcs11configPKCS11_FREE PKCS11_FREE
#endif
#ifdef configPKCS11_DEFAULT_USER_PIN
#define pkcs11configPKCS11_DEFAULT_USER_PIN configPKCS11_DEFAULT_USER_PIN
#endif
#endif /* ifndef DOXYGEN */
/**
* @brief Malloc API used by iot_pkcs11.h
*
*
Possible values: Any platform-specific function for allocating memory.
* Default value: The standard C `"malloc"` function
*/
#ifndef pkcs11configPKCS11_MALLOC
#define pkcs11configPKCS11_MALLOC malloc
#endif
/**
* @brief Free API used by iot_pkcs11.h
*
*
Possible values: Any platform-specific function for freeing memory.
* Default value: The standard C `"free"` function
*/
#ifndef pkcs11configPKCS11_FREE
#define pkcs11configPKCS11_FREE free
#endif
/**
* @brief PKCS #11 default user PIN.
*
* The PKCS #11 standard specifies the presence of a user PIN. That feature is
* sensible for applications that have an interactive user interface and memory
* protections. However, since typical microcontroller applications lack one or
* both of those, the user PIN is assumed to be used herein for interoperability
* purposes only, and not as a security feature.
*
* @note Do not cast this to a pointer! The library calls sizeof to get the length
* of this string.
*
* Possible values: Any four digit code
* Default value: `"0000"`
*/
#ifndef pkcs11configPKCS11_DEFAULT_USER_PIN
#define pkcs11configPKCS11_DEFAULT_USER_PIN "0000"
#endif
/**
* @brief Maximum length (in characters) for a PKCS #11 CKA_LABEL
* attribute.
*
*
Possible values: Any positive integer.
* Default value: `32`
*/
#ifndef pkcs11configMAX_LABEL_LENGTH
#define pkcs11configMAX_LABEL_LENGTH 32
#endif
/**
* @brief Maximum number of token objects that can be stored
* by the PKCS #11 module.
*
*
Possible values: Any positive integer.
* Default value: `6`
*/
#ifndef pkcs11configMAX_NUM_OBJECTS
#define pkcs11configMAX_NUM_OBJECTS 6
#endif
/**
* @brief Maximum number of sessions that can be stored
* by the PKCS #11 module.
*
* @note The windows test port has an abnormally large value in order to have
* enough sessions to successfully run all the model based PKCS #11 tests.
*
* Possible values: Any positive integer.
* Default value: 10
*/
#ifndef pkcs11configMAX_SESSIONS
#define pkcs11configMAX_SESSIONS 10
#endif
/**
* @brief Set to 1 if a PAL destroy object is implemented.
*
* If set to 0, no PAL destroy object is implemented, and this functionality
* is implemented in the common PKCS #11 layer.
*
* Possible values: `0` or `1`
* Default value: `0`
*/
#ifndef pkcs11configPAL_DESTROY_SUPPORTED
#define pkcs11configPAL_DESTROY_SUPPORTED 0
#endif
/**
* @brief Set to 1 if OTA image verification via PKCS #11 module is supported.
*
* If set to 0, OTA code signing certificate is built in via
* aws_ota_codesigner_certificate.h.
*
* Possible values: `0` or `1`
* Default value: `0`
*/
#ifndef pkcs11configOTA_SUPPORTED
#define pkcs11configOTA_SUPPORTED 0
#endif
/**
* @brief Set to 1 if PAL supports storage for JITP certificate,
* code verify certificate, and trusted server root certificate.
*
* If set to 0, PAL does not support storage mechanism for these, and
* they are accessed via headers compiled into the code.
*
* Possible values: `0` or `1`
* Default value: `0`
*/
#ifndef pkcs11configJITP_CODEVERIFY_ROOT_CERT_SUPPORTED
#define pkcs11configJITP_CODEVERIFY_ROOT_CERT_SUPPORTED 0
#endif
/**
* @brief The PKCS #11 label for device private key.
*
* Private key for connection to AWS IoT endpoint. The corresponding
* public key should be registered with the AWS IoT endpoint.
*
* Possible values: Any String smaller then pkcs11configMAX_LABEL_LENGTH.
* Default value: `Device Priv TLS Key`
*/
#ifndef pkcs11configLABEL_DEVICE_PRIVATE_KEY_FOR_TLS
#define pkcs11configLABEL_DEVICE_PRIVATE_KEY_FOR_TLS "Device Priv TLS Key"
#endif
/**
* @brief The PKCS #11 label for device public key.
*
* The public key corresponding to pkcs11configLABEL_DEVICE_PRIVATE_KEY_FOR_TLS.
*
* Possible values: Any String smaller then pkcs11configMAX_LABEL_LENGTH.
* Default value: `Device Pub TLS Key`
*/
#ifndef pkcs11configLABEL_DEVICE_PUBLIC_KEY_FOR_TLS
#define pkcs11configLABEL_DEVICE_PUBLIC_KEY_FOR_TLS "Device Pub TLS Key"
#endif
/**
* @brief The PKCS #11 label for the device certificate.
*
* Device certificate corresponding to pkcs11configLABEL_DEVICE_PRIVATE_KEY_FOR_TLS.
*
* Possible values: Any String smaller then pkcs11configMAX_LABEL_LENGTH.
* Default value: `Device Cert`
*/
#ifndef pkcs11configLABEL_DEVICE_CERTIFICATE_FOR_TLS
#define pkcs11configLABEL_DEVICE_CERTIFICATE_FOR_TLS "Device Cert"
#endif
/**
* @brief The PKCS #11 label for the AWS Trusted Root Certificate.
*
* @see aws_default_root_certificates.h
*
* Possible values: Any String smaller then pkcs11configMAX_LABEL_LENGTH.
* Default value: `Root Cert`
*/
#ifndef pkcs11configLABEL_ROOT_CERTIFICATE
#define pkcs11configLABEL_ROOT_CERTIFICATE "Root Cert"
#endif
/**
* @brief The PKCS #11 label for the object to be used for HMAC operations.
*
*
Possible values: Any String smaller then pkcs11configMAX_LABEL_LENGTH.
* Default value: `HMAC Key`
*/
#ifndef pkcs11configLABEL_HMAC_KEY
#define pkcs11configLABEL_HMAC_KEY "HMAC Key"
#endif
/**
* @brief The PKCS #11 label for the object to be used for CMAC operations.
*
*
Possible values: Any String smaller then pkcs11configMAX_LABEL_LENGTH.
* Default value: `CMAC Key`
*/
#ifndef pkcs11configLABEL_CMAC_KEY
#define pkcs11configLABEL_CMAC_KEY "CMAC Key"
#endif
/**
* @brief The PKCS #11 label for the object to be used for code verification.
*
* Used by AWS IoT Over-the-Air Update (OTA) code to verify an incoming signed image.
*
* Possible values: Any String smaller then pkcs11configMAX_LABEL_LENGTH.
* Default value: `Code Verify Key`
*/
#ifndef pkcs11configLABEL_CODE_VERIFICATION_KEY
#define pkcs11configLABEL_CODE_VERIFICATION_KEY "Code Verify Key"
#endif
/**
* @brief The PKCS #11 label for AWS IoT Just-In-Time-Provisioning.
*
* The certificate corresponding to the issuer of the device certificate
* (pkcs11configLABEL_DEVICE_CERTIFICATE_FOR_TLS) when using the JITR or
* JITP flow.
*
* Possible values: Any String smaller then pkcs11configMAX_LABEL_LENGTH.
* Default value: `Code Verify Key`
*/
#ifndef pkcs11configLABEL_JITP_CERTIFICATE
#define pkcs11configLABEL_JITP_CERTIFICATE "JITP Cert"
#endif
/**
* @brief The PKCS #11 label for AWS IoT Fleet Provisioning claim certificate.
*
* This label is used for the provisioning claim certificate. The provisioning
* claim certificate is used to connect to AWS IoT Core for provisioning a
* client device using "Provisioning by Claim" workflow of the Fleet
* Provisioning Service.
*
* Possible values: Any String smaller then pkcs11configMAX_LABEL_LENGTH.
* Default value: `Claim Cert`
*/
#ifndef pkcs11configLABEL_CLAIM_CERTIFICATE
#define pkcs11configLABEL_CLAIM_CERTIFICATE "Claim Cert"
#endif
/**
* @brief The PKCS #11 label for AWS IoT Fleet Provisioning claim private key.
*
* This label is used for the provisioning claim private key. The provisioning
* claim private key corresponds to the provisioning claim certificate and is
* used to to connect to AWS IoT Core for provisioning a client device using
* "Provisioning by Claim" workflow of the Fleet Provisioning Service.
*
* Possible values: Any String smaller then pkcs11configMAX_LABEL_LENGTH.
* Default value: `Claim Key`
*/
#ifndef pkcs11configLABEL_CLAIM_PRIVATE_KEY
#define pkcs11configLABEL_CLAIM_PRIVATE_KEY "Claim Key"
#endif
/**
* @brief Macro that is called in the corePKCS11 library for logging "Error" level
* messages.
*
* To enable error level logging in the corePKCS11 library, this macro should be mapped to the
* application-specific logging implementation that supports error logging.
*
* @note This logging macro is called in the corePKCS11 library with parameters wrapped in
* double parentheses to be ISO C89/C90 standard compliant.
* For a reference implementation of the logging macros in POSIX environment,
* refer to core_pkcs11_config.h files, and the logging-stack in demos folder of the
* [AWS IoT Embedded C SDK repository](https://github.com/aws/aws-iot-device-sdk-embedded-C/tree/main).
*
* Default value: Error logging is turned off, and no code is generated for calls
* to the macro in the corePKCS11 library on compilation.
*/
#ifndef LogError
#define LogError( message )
#endif
/**
* @brief Macro that is called in the corePKCS11 library for logging "Warning" level
* messages.
*
* To enable warning level logging in the corePKCS11 library, this macro should be mapped to the
* application-specific logging implementation that supports warning logging.
*
* @note This logging macro is called in the corePKCS11 library with parameters wrapped in
* double parentheses to be ISO C89/C90 standard compliant.
* For a reference implementation of the logging macros in POSIX environment,
* refer to core_pkcs11_config.h files, and the logging-stack in demos folder of the
* [AWS IoT Embedded C SDK repository](https://github.com/aws/aws-iot-device-sdk-embedded-C/tree/main).
*
* Default value: Warning logs are turned off, and no code is generated for calls
* to the macro in the corePKCS11 library on compilation.
*/
#ifndef LogWarn
#define LogWarn( message )
#endif
/**
* @brief Macro that is called in the corePKCS11 library for logging "Info" level
* messages.
*
* To enable info level logging in the corePKCS11 library, this macro should be mapped to the
* application-specific logging implementation that supports info logging.
*
* @note This logging macro is called in the corePKCS11 library with parameters wrapped in
* double parentheses to be ISO C89/C90 standard compliant.
* For a reference implementation of the logging macros in POSIX environment,
* refer to core_pkcs11_config.h files, and the logging-stack in demos folder of the
* [AWS IoT Embedded C SDK repository](https://github.com/aws/aws-iot-device-sdk-embedded-C/tree/main).
*
* Default value: Info logging is turned off, and no code is generated for calls
* to the macro in the corePKCS11 library on compilation.
*/
#ifndef LogInfo
#define LogInfo( message )
#endif
/**
* @brief Macro that is called in the corePKCS11 library for logging "Debug" level
* messages.
*
* To enable debug level logging from corePKCS11 library, this macro should be mapped to the
* application-specific logging implementation that supports debug logging.
*
* @note This logging macro is called in the corePKCS11 library with parameters wrapped in
* double parentheses to be ISO C89/C90 standard compliant.
* For a reference implementation of the logging macros in POSIX environment,
* refer to core_pkcs11_config.h files, and the logging-stack in demos folder of the
* [AWS IoT Embedded C SDK repository](https://github.com/aws/aws-iot-device-sdk-embedded-C/tree/main).
*
* Default value: Debug logging is turned off, and no code is generated for calls
* to the macro in the corePKCS11 library on compilation.
*/
#ifndef LogDebug
#define LogDebug( message )
#endif
/* *INDENT-OFF* */
#ifdef __cplusplus
}
#endif
/* *INDENT-ON* */
#endif /* CORE_PKCS11_CONFIG_DEFAULTS_H_ include guard. */