Hi all, I have an implementation of SSL handshake from the client side, by using these functions: SSL_CTX_load_verify_locations SSL_CTX_use_certificate_chain_file SSL_CTX_use_PrivateKey_file
All functions get char* type for the filename parameter. How can I change it to support also unicode file locations?
Thanks!