This directory contains test certificates used for testing ssl handling. These keystores and certificates can be used via applying the `opensearch.test-with-ssl` plugin. The generated certificates are valid till 05. Jun 2030. The certificates are generated using catch-all SAN in the following procedure: 1. Generate the node's keystore: `keytool -genkey -alias test-node -keystore test-node.jks -keyalg RSA -keysize 2048 -validity 3654 -dname CN="OpenSearch Build Test Infrastructure" -keypass keypass -storepass keypass -ext san=dns:localhost,dns:localhost.localdomain,dns:localhost4,dns:localhost4.localdomain4,dns:localhost6,dns:localhost6.localdomain6,ip:127.0.0.1,ip:0:0:0:0:0:0:0:1` 2. Generate the client's keystore: `keytool -genkey -alias test-client -keystore test-client.jks -keyalg RSA -keysize 2048 -validity 3654 -dname CN="OpenSearch Build Test Infrastructure" -keypass keypass -storepass keypass -ext san=dns:localhost,dns:localhost.localdomain,dns:localhost4,dns:localhost4.localdomain4,dns:localhost6,dns:localhost6.localdomain6,ip:127.0.0.1,ip:0:0:0:0:0:0:0:1` 3. Export the node's certificate: `keytool -export -alias test-node -keystore test-node.jks -storepass keypass -file test-node.crt` 4. Import the node certificate in the client's keystore: `keytool -import -alias test-node -keystore test-client.jks -storepass keypass -file test-node.crt -noprompt` 5. Export the client's certificate: `keytool -export -alias test-client -keystore test-client.jks -storepass keypass -file test-client.crt` 6. Import the client certificate in the node's keystore: `keytool -import -alias test-client -keystore test-node.jks -storepass keypass -file test-client.crt -noprompt`