We have an application that is currently running via HTTP protocol. We are aiming to migrate it to HTTPS. We have made the necessary changes, but then during login to the application I am getting a "peer not authenticated" error message.
I am completely new to the SSL world, and so I Google up and have captured the Wireshark trace and the communication looks as below:
- Client sends [SYN] to server.
- Server sends [SYN,ACK] to client.
- Client sends [ACK] to server.
- Client sends the message
ClientHello
to the server. - Server sends
ServerHello
and then its certificate with the messages “ServerHello, Certificate, ServerHelloDone
- Alert 61, Level Fatal, Description: Certificate Unknown // Failing here.
Please share your inputs on what could be going wrong. We are stuck here and not able to proceed further.