Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
Openfire
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
Openfire
Commits
173e6204
Commit
173e6204
authored
Apr 20, 2015
by
Guus der Kinderen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Prevent issues with non-existing keystore.
parent
ffc7e0bb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
import-keystore-certificate.jsp
src/web/import-keystore-certificate.jsp
+8
-8
No files found.
src/web/import-keystore-certificate.jsp
View file @
173e6204
...
...
@@ -31,14 +31,6 @@
}
if
(
errors
.
isEmpty
())
{
try
{
// Create an alias for the signed certificate
String
domain
=
XMPPServer
.
getInstance
().
getServerInfo
().
getXMPPDomain
();
int
index
=
1
;
String
alias
=
domain
+
"_"
+
index
;
while
(
SSLConfig
.
getKeyStore
().
containsAlias
(
alias
))
{
index
=
index
+
1
;
alias
=
domain
+
"_"
+
index
;
}
KeyStore
keystore
;
try
{
keystore
=
SSLConfig
.
getKeyStore
();
...
...
@@ -46,6 +38,14 @@
catch
(
Exception
e
)
{
keystore
=
SSLConfig
.
initializeKeyStore
();
}
// Create an alias for the signed certificate
String
domain
=
XMPPServer
.
getInstance
().
getServerInfo
().
getXMPPDomain
();
int
index
=
1
;
String
alias
=
domain
+
"_"
+
index
;
while
(
keystore
.
containsAlias
(
alias
))
{
index
=
index
+
1
;
alias
=
domain
+
"_"
+
index
;
}
// Import certificate
CertificateManager
.
installCert
(
keystore
,
SSLConfig
.
gets2sTrustStore
(),
SSLConfig
.
getKeyPassword
(),
alias
,
new
ByteArrayInputStream
(
privateKey
.
getBytes
()),
passPhrase
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment