the output of:
openssl req -noout -modulus -in presentCSR.csr
and
openssl x509 -noout -modulus -in server_new.crt | openssl md5
matches.
But the output of
openssl rsa -noout -modulus -in server.key | openssl md5
is different from that of above two. which is reason I got key value mismatch error. I have used the same information which is in the CSR while generating private key.
Does anybody know where I am making mistake?