File tree
13 files changed
+309
-96
lines changed- aws-common-runtime
- include/aws/crt/auth
- source
- auth
- http
- iot
- tests
13 files changed
+309
-96
lines changedSubmodule aws-c-auth updated 43 files
- README.md+67
- include/aws/auth/auth.h+11
- include/aws/auth/credentials.h+28-50
- include/aws/auth/private/aws_signing.h+7-2
- include/aws/auth/signable.h+23-2
- include/aws/auth/signing.h+28-4
- include/aws/auth/signing_config.h+153-40
- source/auth.c+37
- source/aws_imds_client.c+1-1
- source/aws_profile.c+3-2
- source/aws_signing.c+325-201
- source/credentials.c+133-65
- source/credentials_provider_cached.c+41-27
- source/credentials_provider_chain.c+16-6
- source/credentials_provider_ecs.c+21-4
- source/credentials_provider_environment.c+23-26
- source/credentials_provider_imds.c+4-4
- source/credentials_provider_process.c+13-2
- source/credentials_provider_profile.c+10-2
- source/credentials_provider_static.c+4-11
- source/credentials_provider_sts.c+59-38
- source/credentials_provider_sts_web_identity.c+59-42
- source/credentials_provider_x509.c+23-4
- source/credentials_utils.c+43-43
- source/signable.c+3-5
- source/signing.c+95-58
- source/signing_config.c+50-10
- source/sigv4_http_request.c+125-17
- source/xml_parser.c+1-1
- tests/CMakeLists.txt+1-1
- tests/aws_imds_client_test.c+4-4
- tests/credentials_provider_ecs_tests.c+19-37
- tests/credentials_provider_imds_tests.c+25-95
- tests/credentials_provider_process_tests.c+22-24
- tests/credentials_provider_sts_tests.c+29-30
- tests/credentials_provider_sts_web_identity_tests.c+15-9
- tests/credentials_provider_utils.c+9-8
- tests/credentials_provider_utils.h+2-1
- tests/credentials_provider_x509_tests.c+18-37
- tests/credentials_tests.c+65-85
- tests/sigv4_tests.c+41-64
- tests/test_chunked_signing.c+332
- tests/test_signable.c+10-14
Submodule aws-c-common updated 21 files
- CMakeLists.txt+27-11
- cmake/AwsFeatureTests.cmake+9
- cmake/AwsSIMD.cmake-30
- include/aws/common/bigint.h+68-53
- include/aws/common/cpuid.h+37
- include/aws/common/encoding.h+18
- include/aws/common/encoding.inl+38
- source/arch/cpuid.c-91
- source/arch/generic/cpuid.c+25
- source/arch/intel/asm/cpuid.c+39
- source/arch/intel/cpuid.c+111
- source/arch/intel/encoding_avx2.c
- source/arch/intel/msvc/cpuid.c+22
- source/bigint.c+478-415
- tests/CMakeLists.txt+20-9
- tests/bigint_test.c+480-450
- tests/encoding_test.c+117
- tests/resources/ascii.txt+1
- tests/resources/utf16be.txt
- tests/resources/utf16le.txt
- tests/resources/utf8.txt+1
Submodule aws-c-mqtt updated 1 file
Lines changed: 9 additions & 3 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
40 | 40 |
| |
41 | 41 |
| |
42 | 42 |
| |
43 |
| - | |
| 43 | + | |
44 | 44 |
| |
45 | 45 |
| |
46 | 46 |
| |
47 | 47 |
| |
| 48 | + | |
48 | 49 |
| |
49 | 50 |
| |
50 | 51 |
| |
| |||
69 | 70 |
| |
70 | 71 |
| |
71 | 72 |
| |
| 73 | + | |
| 74 | + | |
| 75 | + | |
| 76 | + | |
| 77 | + | |
72 | 78 |
| |
73 | 79 |
| |
74 | 80 |
| |
| |||
87 | 93 |
| |
88 | 94 |
| |
89 | 95 |
| |
90 |
| - | |
| 96 | + | |
91 | 97 |
| |
92 | 98 |
| |
93 | 99 |
| |
| |||
325 | 331 |
| |
326 | 332 |
| |
327 | 333 |
| |
328 |
| - | |
| 334 | + | |
329 | 335 |
| |
330 | 336 |
| |
331 | 337 |
| |
|
Lines changed: 87 additions & 19 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
20 | 20 |
| |
21 | 21 |
| |
22 | 22 |
| |
23 |
| - | |
24 | 23 |
| |
25 | 24 |
| |
26 | 25 |
| |
| |||
34 | 33 |
| |
35 | 34 |
| |
36 | 35 |
| |
37 |
| - | |
38 |
| - | |
| 36 | + | |
| 37 | + | |
39 | 38 |
| |
40 |
| - | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
41 | 54 |
| |
42 | 55 |
| |
43 |
| - | |
| 56 | + | |
44 | 57 |
| |
45 |
| - | |
46 |
| - | |
47 |
| - | |
| 58 | + | |
| 59 | + | |
48 | 60 |
| |
49 | 61 |
| |
50 |
| - | |
| 62 | + | |
51 | 63 |
| |
52 | 64 |
| |
53 | 65 |
| |
| |||
71 | 83 |
| |
72 | 84 |
| |
73 | 85 |
| |
| 86 | + | |
| 87 | + | |
| 88 | + | |
| 89 | + | |
| 90 | + | |
| 91 | + | |
| 92 | + | |
| 93 | + | |
| 94 | + | |
| 95 | + | |
74 | 96 |
| |
75 | 97 |
| |
76 | 98 |
| |
| |||
129 | 151 |
| |
130 | 152 |
| |
131 | 153 |
| |
| 154 | + | |
| 155 | + | |
| 156 | + | |
| 157 | + | |
| 158 | + | |
| 159 | + | |
| 160 | + | |
| 161 | + | |
| 162 | + | |
| 163 | + | |
| 164 | + | |
| 165 | + | |
132 | 166 |
| |
133 | 167 |
| |
134 | 168 |
| |
135 |
| - | |
| 169 | + | |
136 | 170 |
| |
137 | 171 |
| |
138 | 172 |
| |
139 | 173 |
| |
140 | 174 |
| |
141 |
| - | |
| 175 | + | |
| 176 | + | |
| 177 | + | |
| 178 | + | |
| 179 | + | |
| 180 | + | |
| 181 | + | |
| 182 | + | |
| 183 | + | |
| 184 | + | |
| 185 | + | |
| 186 | + | |
| 187 | + | |
| 188 | + | |
| 189 | + | |
| 190 | + | |
142 | 191 |
| |
143 | 192 |
| |
144 |
| - | |
145 |
| - | |
| 193 | + | |
146 | 194 |
| |
147 |
| - | |
| 195 | + | |
148 | 196 |
| |
149 | 197 |
| |
150 |
| - | |
151 |
| - | |
| 198 | + | |
| 199 | + | |
| 200 | + | |
| 201 | + | |
| 202 | + | |
| 203 | + | |
| 204 | + | |
| 205 | + | |
| 206 | + | |
| 207 | + | |
| 208 | + | |
| 209 | + | |
152 | 210 |
| |
153 |
| - | |
154 | 211 |
| |
155 | 212 |
| |
156 | 213 |
| |
157 | 214 |
| |
158 | 215 |
| |
159 | 216 |
| |
160 | 217 |
| |
161 |
| - | |
| 218 | + | |
162 | 219 |
| |
163 | 220 |
| |
164 | 221 |
| |
| 222 | + | |
| 223 | + | |
| 224 | + | |
| 225 | + | |
| 226 | + | |
| 227 | + | |
| 228 | + | |
| 229 | + | |
| 230 | + | |
| 231 | + | |
165 | 232 |
| |
166 | 233 |
| |
167 | 234 |
| |
168 | 235 |
| |
169 | 236 |
| |
170 |
| - | |
| 237 | + | |
| 238 | + | |
171 | 239 |
| |
172 | 240 |
| |
173 | 241 |
| |
|
Lines changed: 35 additions & 11 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
28 | 28 |
| |
29 | 29 |
| |
30 | 30 |
| |
31 |
| - | |
32 |
| - | |
| 31 | + | |
33 | 32 |
| |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
34 | 37 |
| |
35 | 38 |
| |
36 | 39 |
| |
37 | 40 |
| |
38 | 41 |
| |
39 | 42 |
| |
| 43 | + | |
40 | 44 |
| |
41 |
| - | |
42 |
| - | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
43 | 51 |
| |
44 | 52 |
| |
45 | 53 |
| |
46 | 54 |
| |
47 | 55 |
| |
48 |
| - | |
| 56 | + | |
49 | 57 |
| |
50 | 58 |
| |
51 | 59 |
| |
52 | 60 |
| |
53 | 61 |
| |
54 | 62 |
| |
55 | 63 |
| |
56 |
| - | |
| 64 | + | |
57 | 65 |
| |
58 | 66 |
| |
59 | 67 |
| |
| |||
65 | 73 |
| |
66 | 74 |
| |
67 | 75 |
| |
68 |
| - | |
| 76 | + | |
69 | 77 |
| |
70 | 78 |
| |
71 | 79 |
| |
| |||
77 | 85 |
| |
78 | 86 |
| |
79 | 87 |
| |
80 |
| - | |
| 88 | + | |
81 | 89 |
| |
82 | 90 |
| |
83 | 91 |
| |
84 | 92 |
| |
85 | 93 |
| |
86 | 94 |
| |
87 | 95 |
| |
| 96 | + | |
| 97 | + | |
| 98 | + | |
| 99 | + | |
| 100 | + | |
| 101 | + | |
| 102 | + | |
| 103 | + | |
| 104 | + | |
| 105 | + | |
| 106 | + | |
| 107 | + | |
88 | 108 |
| |
89 | 109 |
| |
90 | 110 |
| |
| |||
109 | 129 |
| |
110 | 130 |
| |
111 | 131 |
| |
112 |
| - | |
| 132 | + | |
| 133 | + | |
| 134 | + | |
| 135 | + | |
113 | 136 |
| |
114 | 137 |
| |
115 | 138 |
| |
116 | 139 |
| |
117 |
| - | |
| 140 | + | |
| 141 | + | |
118 | 142 |
| |
119 |
| - | |
| 143 | + | |
120 | 144 |
| |
121 | 145 |
| |
122 | 146 |
| |
|
0 commit comments