1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-04-21 10:26:06 +03:00

Create README.md

This commit is contained in:
Ivan Grokhotkov 2015-08-31 09:22:23 +03:00
parent 6030371051
commit 6c91aa10fc

21
README.md Normal file
View File

@ -0,0 +1,21 @@
Replacement for Espressif's libssl, kept as close as possible to [axTLS](http://axtls.sourceforge.net/) source.
Currently based on axTLS 1.4.9, will be upgraded to 1.5.3.
This is not a self-sufficient library. Application has to provide the following symbols (list not complete yet):
```
malloc
calloc
free
abort
gettimeofday
time
ctime
printf
vprintf
```
Additionally, functions for non-blocking TCP socket reads and writes have to be provided (details TBD).
To build, add xtensa toolchain to your path, and run `make`.
See [LICENSE](LICENSE) file for axTLS license.