diff options
author | Torfinn Berset <torfinn@bloom-life.com> | 2019-01-31 13:50:14 +0100 |
---|---|---|
committer | Torfinn Berset <torfinn@bloom-life.com> | 2019-01-31 13:50:14 +0100 |
commit | cd1db241ad15ea61f3e63547d1178476e1b1a0f4 (patch) | |
tree | f59278389b5316882783d454328e387bbcc249b3 | |
parent | Merge pull request #123 from rkeene/invcipher-not-ctr (diff) | |
download | tiny-AES-c-cd1db241ad15ea61f3e63547d1178476e1b1a0f4.tar tiny-AES-c-cd1db241ad15ea61f3e63547d1178476e1b1a0f4.tar.gz tiny-AES-c-cd1db241ad15ea61f3e63547d1178476e1b1a0f4.tar.bz2 tiny-AES-c-cd1db241ad15ea61f3e63547d1178476e1b1a0f4.tar.lz tiny-AES-c-cd1db241ad15ea61f3e63547d1178476e1b1a0f4.tar.xz tiny-AES-c-cd1db241ad15ea61f3e63547d1178476e1b1a0f4.tar.zst tiny-AES-c-cd1db241ad15ea61f3e63547d1178476e1b1a0f4.zip |
-rw-r--r-- | CMakeLists.txt | 16 | ||||
-rw-r--r-- | conanfile.py | 29 | ||||
-rw-r--r-- | test_package/CMakeLists.txt | 8 | ||||
-rw-r--r-- | test_package/conanfile.py | 17 |
4 files changed, 70 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..5b98934 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,16 @@ +cmake_minimum_required(VERSION 2.8.12) + +project(tinyaes C ASM) + +add_library(tiny-aes + aes.c + ) + +target_compile_definitions(tiny-aes PRIVATE + -DAES128=1 + -DCBC=1 + -DECB=1 + -DCTR=1 + ) + +target_include_directories(tiny-aes PRIVATE tiny-AES-c/) diff --git a/conanfile.py b/conanfile.py new file mode 100644 index 0000000..019c3cb --- /dev/null +++ b/conanfile.py @@ -0,0 +1,29 @@ +from conans import ConanFile, CMake + + +class TinyAesCConan(ConanFile): + name = "tiny-AES-c" + version = "1.0.0" + license = "MIT" + author = "Torfinn Berset <torfinn@bloomlife.com>" + url = "https://github.com/kokke/tiny-AES-c" + description = "Small portable AES128/192/256 in C" + topics = ("encryption", "crypto", "AES") + settings = "os", "compiler", "build_type", "arch" + + generators = "cmake" + exports_sources = ["CMakeLists.txt", "*.c", '*.h', '*.h'] + + def build(self): + cmake = CMake(self) + cmake.configure() + cmake.build() + + def package(self): + self.copy("*.h", dst="include") + self.copy("*.hpp", dst="include") + + self.copy("*.a", dst="lib", keep_path=False) + + def package_info(self): + self.cpp_info.libs = ["tiny-aes"] diff --git a/test_package/CMakeLists.txt b/test_package/CMakeLists.txt new file mode 100644 index 0000000..89cddf4 --- /dev/null +++ b/test_package/CMakeLists.txt @@ -0,0 +1,8 @@ +cmake_minimum_required(VERSION 2.8.12) +project(TinyAesPackageTest C) + +include(${CMAKE_BINARY_DIR}/conanbuildinfo.cmake) +conan_basic_setup() + +add_executable(example ../test.c) +target_link_libraries(example ${CONAN_LIBS}) diff --git a/test_package/conanfile.py b/test_package/conanfile.py new file mode 100644 index 0000000..08f550f --- /dev/null +++ b/test_package/conanfile.py @@ -0,0 +1,17 @@ +from conans import ConanFile, CMake, tools +import os + + +class TinyAesCTestConan(ConanFile): + settings = "os", "compiler", "build_type", "arch" + generators = "cmake" + + def build(self): + cmake = CMake(self) + cmake.configure() + cmake.build() + + def test(self): + if not tools.cross_building(self.settings): + os.chdir("bin") + self.run(".%sexample" % os.sep) |