I am trying to implement DTLS with PSK security in Delphi using the OpenSSL library.
The C++ examples I am basing this on call "BIO_set_conn_hostname" and "BIO_get_ssl" but these functions do not appear to be in "libssl-1_1.dll". The OpenSSL documentation suggests that these functions should be in version 1.1 but I have interrogated the DLL and they are not there - where should I find them?
Here are the 2 examples I am trying to base my code on:
https://chris-wood.github.io/2016/05/06/OpenSSL-DTLS.html
https://bitbucket.org/tiebingzhang/tls-psk-server-client-example/src/783092f802383421cfa1088b0e7b804b39d3cf7c/psk_client.c?at=default
Martin
The C++ examples I am basing this on call "BIO_set_conn_hostname" and "BIO_get_ssl" but these functions do not appear to be in "libssl-1_1.dll". The OpenSSL documentation suggests that these functions should be in version 1.1 but I have interrogated the DLL and they are not there - where should I find them?
Here are the 2 examples I am trying to base my code on:
https://chris-wood.github.io/2016/05/06/OpenSSL-DTLS.html
https://bitbucket.org/tiebingzhang/tls-psk-server-client-example/src/783092f802383421cfa1088b0e7b804b39d3cf7c/psk_client.c?at=default
Martin