mirror of
https://git.suyu.dev/suyu/mbedtls.git
synced 2026-01-05 22:19:11 +01: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:
parent
50546921ac
commit
e6ee41f932
5 changed files with 317 additions and 17 deletions
|
|
@ -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)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue