ArduinoBearSSL
ArduinoBearSSL copied to clipboard
Port of BearSSL to Arduino
The problem of #56 is even bigger: `::ClientRead()` and `::ClientWrite()` are called in bearssl ssl_io.c. If the socket client connection (`Client *c`) is lost or reset by the peer, both...
Should fix #56 @Jeroen88 could you give it a spin?
Besides the canned examples (in another libary) there is no documentation how to use the library or support in the forum. BearSSL reference is not a 1 for 1 match...
Hello Team, The [ATECC608B-TNGTLS](https://www.microchip.com/en-us/products/security-ics/trust-platform/trust-and-go/trust-and-go-aws-iot) comes pre-configured and pre-provisioned with default thumbprint certificates and keys which can be used the cloud infrastructure would not require verification of the thumbprint certificate by...
[Here](https://github.com/arduino-libraries/ArduinoBearSSL/blob/ff4b17d80c278012f13242f553837a25b17c015e/src/BearSSLClient.cpp#L513) the connection might already by closed but there may still be data available in the client's buffer. To work correctly, it should be changed to `return c->read(buf, len);`
hello friend how can I use this function so that it recevies Auto handshake without certificate??? exp : when using class esp8266secure can get data handshake & its dosent need...
Digital Signatures are a very big need and they usually rely in PKCS1.5 algorithm. Currently BearSSL provides the algorithmic implementation but it cannot be accessed through the ArduinoBearSSL library since...
Needed for MQTT to AWS IoT per https://docs.aws.amazon.com/iot/latest/developerguide/protocols.html (if you have the default MQTTs port filtered out). Support is in BearSSL, so it should just be a matter of exposing...
I installed the BearSSL library latest version. I put the `ArduinoBearSSLConfig.h` file in the same directory as my sketch, and modified it to uncomment the line: ```cpp #define ARDUINO_DISABLE_ECCX08 ```...