-
Notifications
You must be signed in to change notification settings - Fork 51
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Making ArduinoECCX08 optional ? #41
Comments
I made a proposal with #45 |
Please, explain how to get the ECCX08 optional, step by step, with example code. I'm planning to use this library in integration with TinyGSM, on ESP32 platform. |
This is possible due to merging #45. I suggest you read the discussion or take a look at the change itself, as it's fairly obvious. |
I'm opening this issue to know if it would be possible to make ArduinoECCX08 optional?
Indeed, I'm currently using ArduinoBearSSL on an Arduino MKR NB 1500 but without using the ArduinoECCX08 (thanks to
setEccVrfy
,setEccSign
, etc.).I'm planning to continue to use ArduinoBearSSL on a STM32 board so I made some modifications to protect all the ArduinoECC08 specific code by
ifndef ARDUINO_DISABLE_ECCX08
.Ideally, I would like to upstream this modification but I'm not sure if it makes sense for you and I don't know if there is a standard way to declare or manage optional dependency in the Arduino world (i.e. if Arduino was autotools/cmake/meson based, I would declare an option such as --disable-eccx08).
The text was updated successfully, but these errors were encountered: