This repository was archived by the owner on Jan 20, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 458
mbed TLS client & server support (WIP) #90
Open
Bmooij
wants to merge
44
commits into
me-no-dev:master
Choose a base branch
from
Bmooij:mbed-tls
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
44 commits
Select commit
Hold shift + click to select a range
a251e59
- very early version with mbed TLS support.
fremouw d4257e6
improved TLS support, removed some not needed debug statements.
fremouw eeff609
removed some more logging.
fremouw f2127a0
getting there, seems to start working, there are still some issues wi…
fremouw 3c9fbd9
add fix for reading larger amounts of data.
fremouw d501a90
some code clean-up
fremouw c9dd608
more code clean-up.
fremouw 52e550b
revert IDF changes, so it works with the latest stable IDF.
fremouw 001ae06
Not a fan of defines, but to keep things in line with the esp8266 ver…
fremouw 9f7a918
clean-up
fremouw 5187673
merge origin/idf-update into mbed-tls, as it's now part of the latest…
fremouw 373c334
Merge branch 'master' into mbed-tls
fremouw d631d7d
add some dummy functions so we can compile when the ESP Async WebServ…
fremouw 78f952e
allow setting a root CA.
fremouw 0879ba2
oops, set debug disabled as default again.
fremouw ef50357
add ASYNC_TCP_SSL_ENABLED around setRootCa call.
fremouw 3fa9abf
Update README.md
fremouw 5e06389
add support for pre-shared key TLS cipher suites
tve 5e511de
update mbed-tls implementation to account for restructing
tve 8e55be4
don't assign _hostname unless necessary
tve 9cba86e
fix indentation; make SSL timeout a #define
tve f34df7f
make SSL timeout a #define, 2nd try
tve 7bca0f4
Merge remote-tracking branch 'upstream/master' into mbed-tls-try2
tve 8ef604b
fix while loop in _recv; fix calls into LwIP; add some comments
tve b7ee312
fix c/c++ linking from tcp_ssl to tcp code
tve 73480f3
TLS fixes: pbuf free bug when reading; add debug printfs; useless ext…
tve 8b52f6c
add minor comment
tve 1e8da66
merge upstream into mbed-tls
tve 8e77fe7
fix Codacy issues
tve b0b2bac
Merge remote-tracking branch 'upstream/master' into mbed-tls-try2
tve 3cc7048
fix issues with closed_slots
tve abdd496
Merge branch 'master' into mbed-tls-try2
me-no-dev 44b3d6b
mbed-tls-try2 updates (#3)
robert-alfaro 540bf7d
fix codacity strlen issues
tve 3d67ffe
Merge branch 'master' into mbed-tls-try2
tve 59f83d8
add client certificate authentication
r3no1t 5ceb4db
Init server implementation
bmooij-beeliners 6bac001
Move stuff from AsyncTCP to tcp_mbedtls
bmooij-beeliners dbe391c
implement free ssl free for server clients
bmooij-beeliners 4c260fb
Update server handshake flow
bmooij-beeliners 535aa27
Fix code when ASYNC_TCP_SSL_ENABLED is not enabled
bmooij-beeliners ab8091e
Fix 2 issues found by PR Quality Review
bmooij-beeliners d763bf1
Fix freeing ssl tcp
bmooij-beeliners 51df5da
Fix cleaning ssl connection
bmooij-beeliners File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I understand strlen appears as risky, but taking sizeof here does not return the same numeric value.