espilon-source/espilon_bot/sdkconfig.defaults
Eun0us 7d360f0cfd
Some checks failed
Discord Push Notification / notify (push) Has been cancelled
fix: enable mbedTLS ChaCha20-Poly1305 and HKDF for crypto.c
sdkconfig.defaults was gitignored and missing — fresh clones failed to
link due to undefined references to mbedtls_hkdf and mbedtls_chachapoly_*.

- Remove sdkconfig.defaults from .gitignore
- Add sdkconfig.defaults with required mbedTLS options
2026-04-15 11:07:02 +02:00

6 lines
165 B
Plaintext

# Required by core/crypto.c (ChaCha20-Poly1305 + HKDF)
CONFIG_MBEDTLS_POLY1305_C=y
CONFIG_MBEDTLS_CHACHA20_C=y
CONFIG_MBEDTLS_CHACHAPOLY_C=y
CONFIG_MBEDTLS_HKDF_C=y