From 778652460f7cceb3e760964a890ffd99ec8230e7 Mon Sep 17 00:00:00 2001 From: Juraj Vijtiuk Date: Thu, 28 Dec 2017 11:10:43 +0100 Subject: add mbedtls crypto support Summary: This patch adds support for mbedTLS as a crypto backend for libssh. mbedTLS is an SSL/TLS library that has been designed to mainly be used in embedded systems. It is loosely coupled and has a low memory footprint. mbedTLS also provides a cryptography library (libmbedcrypto) that can be used without the TLS modules. The patch is unfortunately quite big, since several new files had to be added. DSA is disabled at compile time, since mbedTLS doesn't support DSA Patch review and feedback would be appreciated, and if any issues or suggestions appear, I'm willing to work on them. Signed-off-by: Juraj Vijtiuk Test Plan: * The patch has been tested with a Debug and MinSizeRel build, with libssh unit tests, client tests and the pkd tests. * All the tests have been run with valgrind's memcheck, drd and helgrind tools. * The examples/samplessh client works when built with the patch. Reviewers: asn, aris Subscribers: simonsj Differential Revision: https://bugs.libssh.org/D1 --- DefineOptions.cmake | 1 + 1 file changed, 1 insertion(+) (limited to 'DefineOptions.cmake') diff --git a/DefineOptions.cmake b/DefineOptions.cmake index ab7819a5..a2a8c5e6 100644 --- a/DefineOptions.cmake +++ b/DefineOptions.cmake @@ -7,6 +7,7 @@ option(WITH_STATIC_LIB "Build with a static library" OFF) option(WITH_DEBUG_CRYPTO "Build with cryto debug output" OFF) option(WITH_DEBUG_CALLTRACE "Build with calltrace debug output" ON) option(WITH_GCRYPT "Compile against libgcrypt" OFF) +option(WITH_MBEDTLS "Compile against libmbedtls" OFF) option(WITH_PCAP "Compile with Pcap generation support" ON) option(WITH_INTERNAL_DOC "Compile doxygen internal documentation" OFF) option(WITH_TESTING "Build with unit tests" OFF) -- cgit v1.2.1