mirror of
https://git.suyu.dev/suyu/mbedtls.git
synced 2026-03-10 10:56:27 +00:00
- Added OpenSSL / PolarSSL compatibility script (tests/compat.sh) and example application (programs/ssl/o_p_test) (Requires OpenSSL)
- Handle encryption with private key and decryption with public key as per RFC 2313
This commit is contained in:
@@ -1,3 +1,5 @@
|
||||
FIND_PACKAGE(OpenSSL)
|
||||
|
||||
set(libs
|
||||
polarssl
|
||||
)
|
||||
@@ -21,3 +23,13 @@ target_link_libraries(ssl_cert_test ${libs})
|
||||
install(TARGETS selftest benchmark ssl_test ssl_cert_test
|
||||
DESTINATION "bin"
|
||||
PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE)
|
||||
|
||||
if(OPENSSL_FOUND)
|
||||
add_executable(o_p_test o_p_test.c)
|
||||
target_link_libraries(o_p_test ${libs} ${OPENSSL_LIBRARIES})
|
||||
|
||||
install(TARGETS o_p_test
|
||||
DESTINATION "bin"
|
||||
PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE)
|
||||
endif(OPENSSL_FOUND)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user