- 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:
Paul Bakker 2012-05-19 08:43:48 +00:00
parent 50546921ac
commit e6ee41f932
5 changed files with 317 additions and 17 deletions

View file

@ -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)