Client authentication in server Tomcat
问题 i want to configure SSL for mutual authentication. I work with eclipse + tomcat 8. I do this passages: I created private keys in this way: openssl genrsa -des3 -out client_key.pem 2048 openssl genrsa -des3 -out server_key.pem 2048 I created self-signed certificates: openssl req -new -x509 -key client_key.pem -out client.pem -days 365 -config <path to>\openssl.cnf openssl req -new -x509 -key server_key.pem -out server.pem -days 365 -config <path to>\openssl.cnf I created truststore and import