/* * Amazon FreeRTOS V1.1.4 * Copyright (C) 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * 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. * * http://aws.amazon.com/freertos * http://www.FreeRTOS.org */ #ifndef AWS_CLIENT_CREDENTIAL_KEYS_H #define AWS_CLIENT_CREDENTIAL_KEYS_H #include /* * PEM-encoded client certificate. * * Must include the PEM header and footer: * "-----BEGIN CERTIFICATE-----\n"\ * "...base64 data...\n"\ * "-----END CERTIFICATE-----" */ /* #define keyCLIENT_CERTIFICATE_PEM \ * "-----BEGIN CERTIFICATE-----\n"\ * "-----END CERTIFICATE-----" */ #ifndef keyCLIENT_CERTIFICATE_PEM #error "Uncomment the keyCLIENT_CERTIFICATE_PEM macro above and insert device certificate" #endif /* keyCLIENT_CERTIFICATE_PEM */ /* * PEM-encoded client private key. * * Must include the PEM header and footer: * "-----BEGIN RSA PRIVATE KEY-----\n"\ * "...base64 data...\n"\ * "-----END RSA PRIVATE KEY-----" */ /* #define keyCLIENT_PRIVATE_KEY_PEM \ * "-----BEGIN RSA PRIVATE KEY-----\n"\ * "-----END RSA PRIVATE KEY-----" */ #ifndef keyCLIENT_PRIVATE_KEY_PEM #error "Uncomment the keyCLIENT_PRIVATE_KEY_PEM macro above and insert device private key" #endif /* keyCLIENT_PRIVATE_KEY_PEM */ /* * PEM-encoded Just-in-Time Registration (JITR) certificate (optional). * * If used, must include the PEM header and footer: * "-----BEGIN CERTIFICATE-----\n"\ * "...base64 data...\n"\ * "-----END CERTIFICATE-----" */ #define keyJITR_DEVICE_CERTIFICATE_AUTHORITY_PEM "" #endif /* AWS_CLIENT_CREDENTIAL_KEYS_H */