From 6d6b58ae6b8d14d8b8f534dca93d5bd1d7509074 Mon Sep 17 00:00:00 2001 From: Leon Lynch Date: Sat, 2 Apr 2022 08:05:04 +0200 Subject: [PATCH] Add OpenEMV common crypto abstraction as a submodule The intention is for this crypto abstraction to replace the crypto abstraction and many of the helper functions in tr31_crypto. --- .gitmodules | 3 +++ CMakeLists.txt | 1 + crypto | 1 + 3 files changed, 5 insertions(+) create mode 100644 .gitmodules create mode 160000 crypto diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..f5162d4 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "crypto"] + path = crypto + url = https://github.com/openemv/crypto.git diff --git a/CMakeLists.txt b/CMakeLists.txt index cd6c33b..5ffd30c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -26,6 +26,7 @@ set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_CURRENT_SOURCE_DIR}/cmake/Mo include(CTest) +add_subdirectory(crypto) add_subdirectory(src) add_subdirectory(test) diff --git a/crypto b/crypto new file mode 160000 index 0000000..cc3930a --- /dev/null +++ b/crypto @@ -0,0 +1 @@ +Subproject commit cc3930ae7a97bbd03d16792843e0a2e36e54f597