Add curve25519 to portable
This commit is contained in:
parent
e0a62cf201
commit
5f187770f3
@ -281,6 +281,8 @@ set(
|
|||||||
conf/conf_mall.c
|
conf/conf_mall.c
|
||||||
conf/conf_mod.c
|
conf/conf_mod.c
|
||||||
conf/conf_sap.c
|
conf/conf_sap.c
|
||||||
|
curve25519/curve25519-generic.c
|
||||||
|
curve25519/curve25519.c
|
||||||
des/cbc_cksm.c
|
des/cbc_cksm.c
|
||||||
des/cbc_enc.c
|
des/cbc_enc.c
|
||||||
des/cfb64ede.c
|
des/cfb64ede.c
|
||||||
|
@ -344,6 +344,12 @@ libcrypto_la_SOURCES += conf/conf_mod.c
|
|||||||
libcrypto_la_SOURCES += conf/conf_sap.c
|
libcrypto_la_SOURCES += conf/conf_sap.c
|
||||||
noinst_HEADERS += conf/conf_def.h
|
noinst_HEADERS += conf/conf_def.h
|
||||||
|
|
||||||
|
# curve25519
|
||||||
|
libcrypto_la_SOURCES += curve25519/curve25519-generic.c
|
||||||
|
libcrypto_la_SOURCES += curve25519/curve25519.c
|
||||||
|
noinst_HEADERS += curve25519/curve25519_internal.h
|
||||||
|
|
||||||
|
|
||||||
# des
|
# des
|
||||||
libcrypto_la_SOURCES += des/cbc_cksm.c
|
libcrypto_la_SOURCES += des/cbc_cksm.c
|
||||||
libcrypto_la_SOURCES += des/cbc_enc.c
|
libcrypto_la_SOURCES += des/cbc_enc.c
|
||||||
|
@ -341,3 +341,8 @@ add_test(utf8test utf8test)
|
|||||||
add_executable(verifytest verifytest.c)
|
add_executable(verifytest verifytest.c)
|
||||||
target_link_libraries(verifytest tls ${OPENSSL_LIBS})
|
target_link_libraries(verifytest tls ${OPENSSL_LIBS})
|
||||||
add_test(verifytest verifytest)
|
add_test(verifytest verifytest)
|
||||||
|
|
||||||
|
# x25519test
|
||||||
|
add_executable(x25519test x25519test.c)
|
||||||
|
target_link_libraries(x25519test ${OPENSSL_LIBS})
|
||||||
|
add_test(x25519test x25519test)
|
||||||
|
@ -338,3 +338,8 @@ utf8test_SOURCES = utf8test.c
|
|||||||
TESTS += verifytest
|
TESTS += verifytest
|
||||||
check_PROGRAMS += verifytest
|
check_PROGRAMS += verifytest
|
||||||
verifytest_SOURCES = verifytest.c
|
verifytest_SOURCES = verifytest.c
|
||||||
|
|
||||||
|
# x25519test
|
||||||
|
TESTS += x25519test
|
||||||
|
check_PROGRAMS += x25519test
|
||||||
|
x25519test_SOURCES = x25519test.c
|
||||||
|
@ -124,7 +124,7 @@ copy_hdrs $libcrypto_src "stack/stack.h lhash/lhash.h stack/safestack.h
|
|||||||
md4/md4.h ripemd/ripemd.h whrlpool/whrlpool.h idea/idea.h
|
md4/md4.h ripemd/ripemd.h whrlpool/whrlpool.h idea/idea.h
|
||||||
rc2/rc2.h rc4/rc4.h ui/ui_compat.h txt_db/txt_db.h
|
rc2/rc2.h rc4/rc4.h ui/ui_compat.h txt_db/txt_db.h
|
||||||
chacha/chacha.h evp/evp.h poly1305/poly1305.h camellia/camellia.h
|
chacha/chacha.h evp/evp.h poly1305/poly1305.h camellia/camellia.h
|
||||||
gost/gost.h"
|
gost/gost.h curve25519/curve25519.h"
|
||||||
|
|
||||||
copy_hdrs $libssl_src "srtp.h ssl.h ssl2.h ssl3.h ssl23.h tls1.h dtls1.h"
|
copy_hdrs $libssl_src "srtp.h ssl.h ssl2.h ssl3.h ssl23.h tls1.h dtls1.h"
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user