-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
apply http stream activation refactor. (#136)
apply http stream activation refactor. Numerous bug fixes. Reworked Mac OS trust store evaluation.
- Loading branch information
1 parent
b41a914
commit e3cdbaf
Showing
27 changed files
with
156 additions
and
112 deletions.
There are no files selected for viewing
This file contains 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 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 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
Submodule aws-c-auth
updated
22 files
+92 −0 | .github/workflows/ci.yml | |
+0 −23 | .github/workflows/mac-osx-ci.yml | |
+2 −0 | CMakeLists.txt | |
+9 −0 | builder.json | |
+1 −0 | include/aws/auth/auth.h | |
+85 −10 | include/aws/auth/credentials.h | |
+5 −0 | include/aws/auth/private/credentials_utils.h | |
+6 −4 | source/auth.c | |
+1 −5 | source/aws_profile.c | |
+113 −50 | source/credentials.c | |
+48 −14 | source/credentials_provider_cached.c | |
+677 −0 | source/credentials_provider_ecs.c | |
+508 −178 | source/credentials_provider_imds.c | |
+3 −3 | source/credentials_provider_profile.c | |
+28 −5 | source/credentials_provider_sts.c | |
+19 −3 | tests/CMakeLists.txt | |
+724 −0 | tests/credentials_provider_ecs_tests.c | |
+498 −128 | tests/credentials_provider_imds_tests.c | |
+176 −130 | tests/credentials_provider_sts_tests.c | |
+64 −15 | tests/credentials_provider_utils.c | |
+6 −3 | tests/credentials_provider_utils.h | |
+14 −10 | tests/credentials_tests.c |
Submodule aws-c-common
updated
45 files
Submodule aws-c-compression
updated
9 files
+110 −0 | .github/workflows/ci.yml | |
+0 −23 | .github/workflows/mac-osx-ci.yml | |
+24 −1 | include/aws/compression/compression.h | |
+11 −5 | include/aws/compression/huffman.h | |
+54 −0 | source/compression.c | |
+40 −37 | source/huffman.c | |
+4 −0 | tests/CMakeLists.txt | |
+55 −1 | tests/huffman_test.c | |
+13 −9 | tests/library_test.c |
Submodule aws-c-http
updated
60 files
Submodule aws-c-io
updated
25 files
+32 −12 | .github/workflows/ci.yml | |
+1 −1 | CMakeLists.txt | |
+3 −6 | builder.json | |
+35 −15 | include/aws/io/channel.h | |
+32 −31 | include/aws/io/channel_bootstrap.h | |
+4 −0 | include/aws/io/tls_channel_handler.h | |
+4 −2 | include/aws/testing/io_testing_channel.h | |
+86 −35 | source/channel.c | |
+62 −81 | source/channel_bootstrap.c | |
+35 −4 | source/darwin/secure_transport_tls_channel_handler.c | |
+2 −0 | source/posix/socket.c | |
+17 −4 | source/s2n/s2n_tls_channel_handler.c | |
+2 −2 | source/stream.c | |
+2 −0 | source/windows/iocp/socket.c | |
+38 −31 | source/windows/secure_channel_tls_handler.c | |
+3 −5 | tests/CMakeLists.txt | |
+28 −13 | tests/alpn_handler_test.c | |
+52 −240 | tests/channel_test.c | |
+1 −0 | tests/event_loop_test.c | |
+2 −0 | tests/io_testing_channel_test.c | |
+0 −11 | tests/read_write_test_handler.c | |
+0 −2 | tests/read_write_test_handler.h | |
+21 −15 | tests/socket_handler_test.c | |
+67 −21 | tests/socket_test.c | |
+90 −35 | tests/tls_handler_test.c |
Submodule aws-c-mqtt
updated
3 files
+27 −9 | .github/workflows/ci.yml | |
+1 −1 | source/client.c | |
+11 −8 | tests/connection_state_test.c |
Submodule s2n
updated
from e460a3 to bffd9b
This file contains 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 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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -244,7 +244,7 @@ def awscrt_ext(): | |
|
||
setuptools.setup( | ||
name="awscrt", | ||
version="0.5.11", | ||
version="0.5.12", | ||
author="Amazon Web Services, Inc", | ||
author_email="[email protected]", | ||
description="A common runtime for AWS Python projects", | ||
|
This file contains 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 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 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 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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
-----BEGIN CERTIFICATE----- | ||
MIIEADCCAugCCQCtEgLxN71/TDANBgkqhkiG9w0BAQsFADCBwTELMAkGA1UEBhMC | ||
VVMxEzARBgNVBAgMCldhc2hpbmd0b24xEDAOBgNVBAcMB1NlYXR0bGUxITAfBgNV | ||
BAoMGEFtYXpvbiBXZWIgU2VydmljZXMsIEluYzEbMBkGA1UECwwSQXdzIGNvbW1v | ||
biBydW50aW1lMRkwFwYDVQQDDBBwa2kuaXMudGhlLndvcnN0MTAwLgYJKoZIhvcN | ||
AQkBFiFhd3Mtc2RrLWNvbW1vbi1ydW50aW1lQGFtYXpvbi5jb20wHhcNMjAwMzI4 | ||
MDMwNTI4WhcNNDcwODE0MDMwNTI4WjCBwTELMAkGA1UEBhMCVVMxEzARBgNVBAgM | ||
Cldhc2hpbmd0b24xEDAOBgNVBAcMB1NlYXR0bGUxITAfBgNVBAoMGEFtYXpvbiBX | ||
ZWIgU2VydmljZXMsIEluYzEbMBkGA1UECwwSQXdzIGNvbW1vbiBydW50aW1lMRkw | ||
FwYDVQQDDBBwa2kuaXMudGhlLndvcnN0MTAwLgYJKoZIhvcNAQkBFiFhd3Mtc2Rr | ||
LWNvbW1vbi1ydW50aW1lQGFtYXpvbi5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IB | ||
DwAwggEKAoIBAQDCUFDcwnUkyK/7M2RFXmWGryCfUM/Y4sPV5dm8Q52wZcPATaAO | ||
Ucnh03qhPbxHyiF56EYNxF6tIXqMifO6CyiC1Dcvkq4yYVAYBH2GpwpscBraVrNX | ||
KUeBZVv3tAFIFWMgGSz4SYB+6pdTEHxFA3iZjH4WIMgMMAZWiz7ktqz3b+OqOSHT | ||
i89rShb0QVrAdHzSeKXwyRA5X4vTMLQEFwNU/6D57+1IdSlo0svdrF70GYuxpR7G | ||
2VOIZqbVSyoL0dkuFCh1XjbuIyvNqshWXV644BtEwoP5P36tSONUiLbhLaR++pO0 | ||
RB2WgniJSBGUe0gSfl9djaaAg7KdbfIoIosRAgMBAAEwDQYJKoZIhvcNAQELBQAD | ||
ggEBAKdg2Z2DL2sow8ckf90uqrwNpuCKlydg1XGS2hBSWyhiFd3Ztj9pRKdpsjA8 | ||
mF9x4U+WwmekzV6CZKXPlO5qlCvU1h7dFVRHZtG4O1bIRQNcgycoiL7Q9Sp+crP1 | ||
Y8pF1vjCuoMlGFSSMXazRVXcJ/FVeBD4rS8AmyR6B4W8fykVQAYNcH4gXwQ0WP7O | ||
bjJrI1kTB+3JQU1KHHDTi3/gMvCUanzDc8HJ0CEpch8AY9S4suAYJmM6HpWzczoy | ||
jUH/yQT0ehur9wRy566BwUdTVfi+2cQQfYNPqs9iJdYZ7loSBDRH7vO7ivE4Y/Zz | ||
ilbJgpP/vnoxwEVSYD0W+1ctaEg= | ||
-----END CERTIFICATE----- |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
-----BEGIN CERTIFICATE----- | ||
MIID+TCCAuECCQDufZzOyUBvoTANBgkqhkiG9w0BAQUFADCBwTELMAkGA1UEBhMC | ||
VVMxEzARBgNVBAgMCldhc2hpbmd0b24xEDAOBgNVBAcMB1NlYXR0bGUxITAfBgNV | ||
BAoMGEFtYXpvbiBXZWIgU2VydmljZXMsIEluYzEbMBkGA1UECwwSQXdzIGNvbW1v | ||
biBydW50aW1lMRkwFwYDVQQDDBBwa2kuaXMudGhlLndvcnN0MTAwLgYJKoZIhvcN | ||
AQkBFiFhd3Mtc2RrLWNvbW1vbi1ydW50aW1lQGFtYXpvbi5jb20wHhcNMjAwMzI4 | ||
MDMwODU3WhcNMzAwMzI2MDMwODU3WjCBujELMAkGA1UEBhMCVVMxEzARBgNVBAgM | ||
Cldhc2hpbmd0b24xEDAOBgNVBAcMB1NlYXR0bGUxITAfBgNVBAoMGEFtYXpvbiBX | ||
ZWIgU2VydmljZXMsIEluYzEbMBkGA1UECwwSQXdzIGNvbW1vbiBydW50aW1lMRIw | ||
EAYDVQQDDAlsb2NhbGhvc3QxMDAuBgkqhkiG9w0BCQEWIWF3cy1zZGstY29tbW9u | ||
LXJ1bnRpbWVAYW1hem9uLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC | ||
ggEBAJ/WE+6CF8V/UJ4uL79LvnEfXWlfUA/KMiopiDJOKyn4dP4McKSqzZsuaiBK | ||
XJcT1O25MRIdyacHht0+c4+zlLChqhiGs5Ld1M+AHr5bA55dBojUfbPQJIN36TiH | ||
SzyhvENn4XGK140HynhlW2omnnNoUEqNi45qJTgPy4+IqfH5e8zpiI9bs7GXcewz | ||
PCNiX0mxeNq0wlyrCjfY35XY+fKCqo80kdJ6e12RM7+a2JO1BAiqhs0+TngNfXSP | ||
eo5jdeC8GhREssR7/JVyB2yWDx5VDmdWAxDwWYy51t9MlsSLWXB2kA51NC8ER6YX | ||
aFMwiU48G2xveaXp/0lVDR0ohD0CAwEAATANBgkqhkiG9w0BAQUFAAOCAQEAOljE | ||
Z5yomuomyQSzsmGc3gbGsSKY6waSTpns6A6teqEqi99Xcvxk6rpUjkqXavedpaEu | ||
5CiLJQXbXLiqoz2aVKj4eN94R/PGXYHWZ3l8MXGpUssUyee6jveHLNclliHNfgyX | ||
hecS7EAeGks88bY33RF5zh80TTurWs7Eaddw8CoxZmLPUFq+2SeMirxS2HVgjytV | ||
ex/MS3XkWEvBcTpzZNYSP2H4nHlpzRtB/scRBf3rIcEuLiLyaRuvSZAkxrdFRnSa | ||
tj1mArGWt9CRvRANL18TzhHTIxZkQ4gnxTXJHAWsqexQqucWSOblm9ouFkooetoO | ||
TI4h04F8jszodmLKUA== | ||
-----END CERTIFICATE----- |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
-----BEGIN RSA PRIVATE KEY----- | ||
MIIEpQIBAAKCAQEAn9YT7oIXxX9Qni4vv0u+cR9daV9QD8oyKimIMk4rKfh0/gxw | ||
pKrNmy5qIEpclxPU7bkxEh3JpweG3T5zj7OUsKGqGIazkt3Uz4AevlsDnl0GiNR9 | ||
s9Akg3fpOIdLPKG8Q2fhcYrXjQfKeGVbaiaec2hQSo2LjmolOA/Lj4ip8fl7zOmI | ||
j1uzsZdx7DM8I2JfSbF42rTCXKsKN9jfldj58oKqjzSR0np7XZEzv5rYk7UECKqG | ||
zT5OeA19dI96jmN14LwaFESyxHv8lXIHbJYPHlUOZ1YDEPBZjLnW30yWxItZcHaQ | ||
DnU0LwRHphdoUzCJTjwbbG95pen/SVUNHSiEPQIDAQABAoIBAQCC3+mGG+OXBT5f | ||
pvXVrxGK0uHLzA1kQG1+9G7esf7J6PTyqAD79BdSf1jKg9j4o3ZwCHlTmixppdIa | ||
Cm7ZNXQEhPsgBfu3wAfmt8N0nlWCMC2PkF41A7NCKsc+UBmc1dmvX7nLHKKOidiR | ||
aHzHmEOZv8ouoWOqAuPi2ZwWNRLiW9gUw4xuCa13u8CJstrB83KqLN9qycfzzI0z | ||
i1VjoxicQ5rvp/btTVAHNIfaNLdSP8pydO0Z9GuYn0HbtlTpPhTV+jE1iFwG9Ft1 | ||
03kTv+6EtlbUeJohjYRtSXw7DkRGfzOuSFsZgLvn0bbbUCz3IfgV/5/eQrOMR4zQ | ||
fxGDWc8BAoGBANO8AS0p8F3ooELhHEojo70SJHtGjfMnzZ/d3NYesSGnJ94I6c/t | ||
7YkgWX9eYhgefCdHBou+OITMXenHMto9Oy5bVs85WRkbHryTzqMpgGLY1UdVH2IF | ||
aSZXOUrz+WhXJq2VwIs/G2Y+0+xRYLaw1Sg+CsLY2tZnG2kFUXrSVuDhAoGBAMFA | ||
fcuQhDE513ogK0aC2W6U8TaZOzlauNRmyUhp5o2jMxK7dfnsFkQ0g2slxIrNmNMN | ||
RGFE9hg6WfOqprXwfZ2SqZ7u/M4c4yY3NShnfTQHua0CoDMZ3FYWeX0F2NtWwSTP | ||
hN2O4bZPw9KGNV8AS5BF9XTd4A/RzZR2UNOXGqLdAoGAGPlJ4jvaIBl6HalTnuMJ | ||
QxnKt8egopeFR1/x1keUePWwXB4NBft4Uv4/0CgfxdyCpFdaTE1JeVBpm1NlihxC | ||
yLr5SEPpYG60d2Wvr8sLW51buqgtpXAh8OXE2jRgrI/q/fp11XbCEpNCh9MpZyMA | ||
YVjACC9v0G4k64Q3EheRK8ECgYEAgOF8w5TmxFmZ/eWUVtsPHTORxuLcX3zEhUrj | ||
dDrEOrObbSO+I2Yy11vaRUwTzqodAKv5bZFrOm837ExkEDSJ4duc6dTinqcfSi5J | ||
cl/KXTfFub9ljY7ypiso7JtIq8co2l7XcldG6qo5o55D2867lkVB1KXgN0ypeRiL | ||
AQHmDrUCgYEAvKFJYxA8j6we3xzKSKb627nodAjW4tX4ohJSaEwICm7YNUkC1Bfa | ||
SD9O2fBm2mtLoX1h7vicmaOnZ8V4wf2JGYp2DgPBsZK8sxhi9xzGP7iYMpTMq2TM | ||
KO9KBGl1MvZNdq7edqlSoqFX1XlPk21o+iHC3lm2w1njUWo4O/avzc8= | ||
-----END RSA PRIVATE KEY----- |
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Oops, something went wrong.