034e1398f0
Merge remote-tracking branch 'public/pr/1621' into development
2018-06-28 12:09:15 +01:00
4b6b08e7d2
Merge remote-tracking branch 'public/pr/1006' into development
2018-06-28 12:08:59 +01:00
1d97cab5f5
Merge remote-tracking branch 'public/pr/1645' into development
2018-06-28 12:06:16 +01:00
bea00bd89c
Merge remote-tracking branch 'public/pr/1783' into development
2018-06-28 12:04:19 +01:00
9e02b973f1
Add ChangeLog entry for #1257 - key_app_writer writes invalid ASN.1
2018-06-28 11:59:15 +01:00
b056dd86d0
Remove a redundant dependency clause
2018-06-28 12:58:56 +02:00
19c01efda1
Merge remote-tracking branch 'public/pr/1258' into development
2018-06-28 11:44:59 +01:00
fd0c240135
Merge remote-tracking branch 'public/pr/1793' into development
2018-06-28 11:25:16 +01:00
05be06cc2d
Make the C++ test mandatory by removing the --no-cxx flag from all.sh
...
Remove the cmake test
2018-06-28 05:10:51 -04:00
45a6719594
Add a CXX build to all.sh to execute the C++ dummy test by default
2018-06-28 05:10:02 -04:00
037ec4b416
Replace tabs with spaces
2018-06-28 05:07:08 -04:00
89c048c101
Tests: add a test for cpp linking
...
Change the name of header_test to cpp_dumy_build
Update the test description to better reflect its contents
2018-06-28 05:07:08 -04:00
0211c32c9a
Change the cpp test to be optional
...
Remove unnecessary defines from the test.
Test by defining TEST_CPP using makefiles or cmake.
2018-06-28 05:07:08 -04:00
40741f8ce5
Add a test with a cpp executable including all mbed TLS headers
...
In case of any problems with the 'extern "C"' directives,
building the executable will fail
2018-06-28 05:05:40 -04:00
d56654f987
Update the forum link in the README file
...
Update the forum link in the readme file as well.
2018-06-27 14:36:37 +03:00
6665b67ddf
Merge remote-tracking branch 'public/pr/1390' into development
2018-06-27 10:51:47 +01:00
9fa21bffe6
Merge remote-tracking branch 'public/pr/1533' into development
2018-06-27 10:50:58 +01:00
95a1c1f8ab
Merge remote-tracking branch 'public/pr/1617' into development
2018-06-27 10:49:59 +01:00
bf4709978c
Adjust to new RSA infrastructure
...
Don't access the rsa cotext parameters directly, but use
the local `mbedtls_mpi` variable that were exported.
2018-06-27 11:51:46 +03:00
a522147f58
Fix compilation errors after updating
...
Fix compilation errorsthat happened after new code introduced
by updating the branch. Replaced `exit` label with `cleanup`.
2018-06-27 09:19:38 +03:00
49221234c8
Update the Mbed TLS forum link
...
Update the link to the new Mbed TLS forum
2018-06-26 16:48:46 +03:00
7972334090
Enable ARIA self test in the unit testing
2018-06-25 15:29:52 +02:00
164b9cd025
update ChangeLog
2018-06-25 20:47:14 +09:00
b7d39db047
update ChangeLog
2018-06-25 20:45:03 +09:00
99a3e80721
update change log.
2018-06-25 20:21:43 +09:00
15550854a3
add ChangeLog to this commit.
2018-06-25 20:07:48 +09:00
2682edf205
Fix build using -std=c99
...
In each place where POSIX/GNU functions are used, the file must declare
that it wants POSIX functionality before including any system headers.
2018-06-25 12:00:26 +01:00
512b4ee9c7
Use gmtime_r to fix thread-safety issue, and use mbedtls_time on Windows
2018-06-25 11:59:54 +01:00
8ee2422ef8
about a issue Replace "new" variable #1782
2018-06-25 19:05:48 +09:00
51d7cfe026
Fix coverity warnings in benchmark.c
...
Functions time with TIME_AND_TSC() didn't have their return values checked.
I'm not sure whether Coverity complained about existing uses, but it did about
new ones, since we consistently check their return values everywhere but here,
which it rightfully finds suspicious.
So, let's check return values. This probably adds a few cycles to existing
loop overhead, but on my machine (x86_64) the added overhead is less than the
random-looking variation between various runs, so it's acceptable.
Some calls had their own particular error checking; remove that in favour of
the new general solution.
2018-06-25 11:19:51 +02:00
6c34442c87
Add fix for #1550 and credit to the ChangeLog
2018-06-24 16:20:56 +01:00
6332e368cc
Fix typo in ChangeLog
...
Fix typo in ChangeLog discovered in PR review
2018-06-24 16:59:56 +03:00
6fd941fe4b
Remove unneeded namesapcing in header files
...
Remove the `mbedtls` namesapcing in the `#include` in header files
Resolves issue #857
2018-06-24 16:56:47 +03:00
7a81426a1a
Fix style issue
...
Add space before and after paranthesis.
2018-06-24 16:34:15 +03:00
6a9257bc57
Add check for return code of bignumber code
...
Add check for return code of `mbedtls_mpi_write_file`
as commented by @sbutcher-arm
2018-06-24 16:33:09 +03:00
5357164c99
Add ebx to the i386 clobber list for MPI assembly
...
This fix adds the ebx register to the clobber list for the i386 inline assembly
for the multiply helper function.
ebx was used but not listed, so when the compiler chose to also use it, ebx was
getting corrupted. I'm surprised this wasn't spotted sooner.
Fixes Github issues #1550 .
2018-06-24 13:21:57 +01:00
bf7fe4f3f0
Replace check with APPLE with CMAKE_SYSTEM_NAME
2018-06-21 20:21:38 +01:00
5b92352374
Document ssl_write_real() behaviour in detail
2018-06-21 19:23:21 +01:00
7ee25d770d
Allow 0 as a valid ret value for mbedtls_ssl_write
...
This patch modifies the documentation for mbedtls_ssl_write() to allow
0 as a valid return value as this is the correct number of bytes that
should be returned when an empty TLS Application record is sent.
2018-06-21 19:23:21 +01:00
a562c26300
Add ChangeLog entry for mbedtls_ssl_write() docs
2018-06-21 19:14:49 +01:00
e3402ce44f
Enable APPLE_BUILD in makefile if using system ar
2018-06-20 10:43:21 +01:00
7994766581
Fix usage of if_build_succeeded in all.sh zeroize test
2018-06-20 09:34:54 +01:00
21f73b57ed
Coding style
...
Commit to be squashed
2018-06-20 08:13:24 +02:00
c51d613eac
Ensure crosscompiling with make works in Mac OS X
2018-06-19 17:25:42 +01:00
e12f0acc4c
Adapt buffer size for minimal CCM config
...
This is useful for testing interop with GnuTLS, which sends records larger
than 512 bytes.
This change is triggered by the addition of CCM interop testing with GnuTLS a
few commits ago.
2018-06-19 14:54:11 +02:00
1f092b40a6
Add ChangeLog entry for ChachaPoly ciphersuites
...
fixes #346
2018-06-19 13:16:45 +02:00
9fece7ee91
Add ChachaPoly ciphersuites to compat.sh
...
This is disabled by default since it requires OpenSSL >= 1.1.0 and the current
default version on the CI is 1.0.2. However, the CI also has 1.1.1-rc which
can be used for this.
2018-06-19 13:16:30 +02:00
2e58e8ee34
Implement ChachaPoly mode in TLS
2018-06-19 12:12:47 +02:00
c36b432108
Add GnuTLS interop for CCM(-8) ciphersuites
...
I'm going to touch the GCM/CCM/CCM-8 code in the next commit, and so far we
didn't have any interop testing for CCM/CCM-8.
Our standard development/testing environment currently has GnuTLS 3.4.10, and
fortunately support for CCM/CCM-8 was introduced in GnuTLS 3.4.0
Support in OpenSSL was introduced in 1.1.0 which is not yet the default
version in the CI.
2018-06-19 12:12:47 +02:00
ce66d5e8e1
Declare ChaCha-Poly ciphersuites
...
Prefer them over AES-GCM as they have better performance and fewer side
channel considerations in software implementations.
2018-06-19 12:11:38 +02:00