27 lines
786 B
Text
27 lines
786 B
Text
/*
|
|
* file: certs.template
|
|
* desc: This file is part of the Krautspace Doorstatus project. It contains
|
|
* certificates for the statusclient.ino programm, that runs on an esp32-s3
|
|
* board (esp32-1732s019).
|
|
*
|
|
* Replace the comments in certificate sections with our own certificates.
|
|
*/
|
|
|
|
constexpr static inline char const CA_CERTS[] PROGMEM = R"EOF(
|
|
-----BEGIN CERTIFICATE-----
|
|
place here your servers public cert
|
|
-----END CERTIFICATE-----
|
|
)EOF";
|
|
|
|
constexpr static inline char const CLIENT_CERT[] PROGMEM = R"EOF(
|
|
-----BEGIN CERTIFICATE-----
|
|
place here your clients public dert
|
|
-----END CERTIFICATE-----
|
|
)EOF";
|
|
|
|
constexpr static inline char const CLIENT_KEY[] PROGMEM = R"EOF(
|
|
-----BEGIN RSA PRIVATE KEY-----
|
|
place here your clients private key
|
|
-----END RSA PRIVATE KEY-----
|
|
)EOF";
|
|
|