/* * 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";