Hello All,
After updating the SSL from 0.9.8e to 0.9.8h in OpenVMS, SSL renegotiation
from the SSL server is failed. Is there any change in the renegotiation api
calls?
I can able to run successfully in 0.9.8e.
It is failing in 0.9.8h.
Here is the code...
printf("Starting SSL renegotiation on SSL server (initiating by SSL
server)");
if(SSL_renegotiate(ssl) <= 0){
printf("SSL_renegotiate() failed\n");
exit(1);
}
if(SSL_do_handshake(ssl) <= 0){
printf("SSL_do_handshake() failed\n");
exit(1);
}
ssl->state = SSL_ST_ACCEPT;
if(SSL_do_handshake(ssl) <= 0){
printf("SSL_do_handshake() failed\n");
exit(1);
}
After changing the SSL_ST_ACCEPT state, the second handshake function
failed.
Can somebody help me?
Thanks in advance.
Regards,
Vasu