Hi all I am new to the SSL and trying to make it work on vxworks6.4 I do not understand how to create a cert and key files for vxworks all samples are for window user. Are there any vxworks user here that implement the SSL ? how do I create the file in order to give it to the following function call? if (SSL_CTX_use_certificate_file(ctx, "prcert.pem", SSL_FILETYPE_PEM) <= 0) { printf("SSL_CTX_use_certificate_file: error \r\n");
} if(SSL_CTX_use_PrivateKey_file(ctx, "prkey.pem", SSL_FILETYPE_PEM) <0) { printf("SSL_CTX_use_PrivateKey_file: error \r\n"); } I will be happy to get an example for the implementation Thank