client portierung auf esp32-s3 hinzu

This commit is contained in:
bernd 2025-04-21 09:54:22 +02:00
parent 6e5dfe4e9c
commit 473c114053
4 changed files with 251 additions and 0 deletions

View file

@ -0,0 +1,27 @@
/*
* 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";