-
|
Hello aws-sdk-cpp development team, When building aws-sdk-cpp v1.11.682 for Android, does enabling USE_S2N=ON mean that s2n-tls is used to replace OpenSSL libssl as the TLS backend? Thank you. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
We don't directly expose the
Here is some documentation which has a step by step on how to use a custom libcrypto library in the SDK. |
Beta Was this translation helpful? Give feedback.
We don't directly expose the
USE_S2Nparameter, as that lives in theaws-c-iosubmodule, which is used by theaws-crt-cpp. However, the SDK uses s2n-tls by default on Android platforms (USE_S2N=ON) when using the CRT HTTP client (USE_CRT_HTTP_CLIENT=ON). But yes, when this flag is enabled, s2n-tls replaces OpenSSL's libssl.Here is some documentation which has a step by step on how to use a custom libcrypto library in the SDK.