first commit

This commit is contained in:
Your Name
2020-04-15 16:24:10 +03:00
parent dc317ffc93
commit 1946373e26
110 changed files with 25480 additions and 0 deletions

6
lib/curve25519/CMakeLists.txt Executable file
View File

@@ -0,0 +1,6 @@
cmake_minimum_required(VERSION 3.4.1)
aux_source_directory(. curve25519_src)
set(DIR_SRCS ${curve25519_src})
add_library( curve25519
STATIC
${DIR_SRCS})