From f77ce5a0226014c811a46d8ab1ba8c9164768ed3 Mon Sep 17 00:00:00 2001 From: Dennis Brentjes Date: Thu, 8 Sep 2016 14:10:48 +0200 Subject: Added null-rsa implementation. --- libcmix-crypto/rsa/null/CMakeLists.txt | 16 ++++++++++++++++ libcmix-crypto/rsa/null/null_rsa.c | 0 2 files changed, 16 insertions(+) create mode 100644 libcmix-crypto/rsa/null/null_rsa.c (limited to 'libcmix-crypto/rsa/null') diff --git a/libcmix-crypto/rsa/null/CMakeLists.txt b/libcmix-crypto/rsa/null/CMakeLists.txt index e69de29..50977fb 100644 --- a/libcmix-crypto/rsa/null/CMakeLists.txt +++ b/libcmix-crypto/rsa/null/CMakeLists.txt @@ -0,0 +1,16 @@ +include(get_target_name) + +get_target_name(target_name) + +add_library(${target_name} SHARED + null_rsa.c +) + +target_compile_options(${target_name} + PRIVATE -std=c99 +) + +target_link_libraries(${target_name} + INTERFACE cmix-crypto + PRIVATE rsa-interface +) diff --git a/libcmix-crypto/rsa/null/null_rsa.c b/libcmix-crypto/rsa/null/null_rsa.c new file mode 100644 index 0000000..e69de29 -- cgit v1.2.3-70-g09d2