This repository has been archived on 2022-11-05. You can view files and clone it, but cannot push or open issues or pull requests.
doorstatus/source/nodemcu/statusclient/certs.template

37 lines
850 B
Plaintext

/*
* file: certs.template
* desc: This file is part of the Krautspace Doorstatus project. It contains
* certificates for the statusclient.ino programm, that runs on a NodeMCU
* with a ESP8266 chip.
*
* Replace the comments in certificate sections with our own certificates.
*/
const char SERVER_CERT[] PROGMEM = R"EOF(
-----BEGIN CERTIFICATE-----
/*
* lace for the public server certificate to authenticate the doorstatus
* server.
*/
-----END CERTIFICATE-----
)EOF";
const char CLIENT_CERT[] PROGMEM = R"EOF(
-----BEGIN CERTIFICATE-----
/*
* Place for the clients (this program) public certificate to authenticate
* client against the server.
*/
-----END CERTIFICATE-----
)EOF";
const char CLIENT_KEY[] PROGMEM = R"EOF(
-----BEGIN CERTIFICATE-----
/*
* Place for the clients private key file.
*/
-----END CERTIFICATE-----
)EOF";