fix: enable mbedTLS ChaCha20-Poly1305 and HKDF for crypto.c
Some checks failed
Discord Push Notification / notify (push) Has been cancelled
Some checks failed
Discord Push Notification / notify (push) Has been cancelled
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
This commit is contained in:
parent
920e8ec0bd
commit
7d360f0cfd
1
.gitignore
vendored
1
.gitignore
vendored
@ -2,7 +2,6 @@
|
||||
espilon_bot/build/
|
||||
espilon_bot/sdkconfig
|
||||
espilon_bot/sdkconfig.old
|
||||
espilon_bot/sdkconfig.defaults
|
||||
espilon_bot/.config
|
||||
espilon_bot/.config.old
|
||||
|
||||
|
||||
5
espilon_bot/sdkconfig.defaults
Normal file
5
espilon_bot/sdkconfig.defaults
Normal file
@ -0,0 +1,5 @@
|
||||
# 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
|
||||
Loading…
Reference in New Issue
Block a user