Skip to content

Commit

Permalink
Fix #2733 : Provide sample key/certficate as PKCS12 keystore
Browse files Browse the repository at this point in the history
  • Loading branch information
vrindanayak committed Aug 24, 2020
1 parent 632e8e5 commit 75110a6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Binary file not shown.
Expand Up @@ -101,8 +101,8 @@ void configureKeyAndTrustStore(Device device) {
device.setTrustStoreURL("${jboss.server.config.url}/keystores/cacerts.jks");
device.setTrustStoreType("JKS");
device.setTrustStorePin("secret");
device.setKeyStoreURL("${jboss.server.config.url}/keystores/key.jks");
device.setKeyStoreType("JKS");
device.setKeyStoreURL("${jboss.server.config.url}/keystores/key.p12");
device.setKeyStoreType("PKCS12");
device.setKeyStorePin("secret");
}
}
Expand Down

0 comments on commit 75110a6

Please sign in to comment.