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
b3d5605f
Commit
b3d5605f
authored
Nov 15, 2014
by
Dave Cridland
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #118 from wmz7year/of825
encryption configuration attributes issue
parents
2297395a
61179a2a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
64 additions
and
0 deletions
+64
-0
JiveGlobals.java
src/java/org/jivesoftware/util/JiveGlobals.java
+64
-0
No files found.
src/java/org/jivesoftware/util/JiveGlobals.java
View file @
b3d5605f
...
...
@@ -30,12 +30,14 @@ import java.util.ArrayList;
import
java.util.Collection
;
import
java.util.Date
;
import
java.util.HashMap
;
import
java.util.Iterator
;
import
java.util.List
;
import
java.util.Locale
;
import
java.util.Map
;
import
java.util.TimeZone
;
import
java.util.TimerTask
;
import
org.apache.commons.lang.StringUtils
;
import
org.jivesoftware.database.DbConnectionManager
;
import
org.slf4j.Logger
;
import
org.slf4j.LoggerFactory
;
...
...
@@ -64,6 +66,7 @@ public class JiveGlobals {
private
static
final
String
ENCRYPTED_PROPERTY_NAME_PREFIX
=
"encrypt."
;
private
static
final
String
ENCRYPTED_PROPERTY_NAMES
=
ENCRYPTED_PROPERTY_NAME_PREFIX
+
"property.name"
;
private
static
final
String
ENCRYPTION_ALGORITHM
=
ENCRYPTED_PROPERTY_NAME_PREFIX
+
"algorithm"
;
private
static
final
String
OLD_ENCRYPTION_ALGORITHM
=
ENCRYPTED_PROPERTY_NAME_PREFIX
+
"old_algorithm"
;
private
static
final
String
ENCRYPTION_KEY_CURRENT
=
ENCRYPTED_PROPERTY_NAME_PREFIX
+
"key.current"
;
private
static
final
String
ENCRYPTION_KEY_NEW
=
ENCRYPTED_PROPERTY_NAME_PREFIX
+
"key.new"
;
private
static
final
String
ENCRYPTION_KEY_OLD
=
ENCRYPTED_PROPERTY_NAME_PREFIX
+
"key.old"
;
...
...
@@ -852,6 +855,11 @@ public class JiveGlobals {
* set the algorithm for encrypting property values
*/
public
static
void
setupPropertyEncryptionAlgorithm
(
String
alg
)
{
// The old way of doing backup backup encryption removals
String
oldAlg
=
securityProperties
.
getProperty
(
ENCRYPTION_ALGORITHM
);
if
(
StringUtils
.
isNotEmpty
(
oldAlg
)){
securityProperties
.
setProperty
(
OLD_ENCRYPTION_ALGORITHM
,
oldAlg
);
}
if
(
ENCRYPTION_ALGORITHM_AES
.
equalsIgnoreCase
(
alg
))
{
securityProperties
.
setProperty
(
ENCRYPTION_ALGORITHM
,
ENCRYPTION_ALGORITHM_AES
);
}
else
{
...
...
@@ -865,8 +873,64 @@ public class JiveGlobals {
*/
public
static
void
setupPropertyEncryptionKey
(
String
key
)
{
currentKey
=
key
;
String
oldKey
=
securityProperties
.
getProperty
(
ENCRYPTION_KEY_CURRENT
);
if
(
StringUtils
.
isNotEmpty
(
oldKey
)
&&
!
oldKey
.
equals
(
key
))
{
oldKey
=
new
AesEncryptor
().
decrypt
(
oldKey
);
// Re-encrypted with a new key configuration
reEncryptionPropertiesWithNewKey
(
oldKey
,
key
);
}
securityProperties
.
setProperty
(
ENCRYPTION_KEY_CURRENT
,
new
AesEncryptor
().
encrypt
(
currentKey
));
}
/**
* Re-encrypted with a new key configuration
*
* @param oldKey old encrypt key
* @param newKey old new key
*/
private
static
void
reEncryptionPropertiesWithNewKey
(
String
oldKey
,
String
newKey
)
{
Encryptor
oldEncryptor
=
null
;
Encryptor
newEncryptor
=
null
;
// Get the old settings to decrypt the encrypted configuration properties
String
oldAlgorithm
=
securityProperties
.
getProperty
(
OLD_ENCRYPTION_ALGORITHM
);
if
(
ENCRYPTION_ALGORITHM_AES
.
equalsIgnoreCase
(
oldAlgorithm
))
{
oldEncryptor
=
new
AesEncryptor
(
oldKey
);
}
else
{
oldEncryptor
=
new
Blowfish
(
oldKey
);
}
String
newAlgorithm
=
securityProperties
.
getProperty
(
ENCRYPTION_ALGORITHM
);
if
(
ENCRYPTION_ALGORITHM_AES
.
equalsIgnoreCase
(
newAlgorithm
))
{
newEncryptor
=
new
AesEncryptor
(
newKey
);
}
else
{
newEncryptor
=
new
Blowfish
(
newKey
);
}
// Set the current encryption
currentKey
=
oldKey
;
propertyEncryptor
=
oldEncryptor
;
// load properties to decrypt
if
(
properties
==
null
)
{
properties
=
JiveProperties
.
getInstance
();
}
// update current encryption
currentKey
=
newKey
;
propertyEncryptor
=
newEncryptor
;
// update properties
Iterator
<
String
>
iterator
=
properties
.
keySet
().
iterator
();
while
(
iterator
.
hasNext
()){
String
name
=
iterator
.
next
();
if
(
isPropertyEncrypted
(
name
)){
// update xml prop
String
xmlProperty
=
getXMLProperty
(
name
);
if
(
StringUtils
.
isNotEmpty
(
xmlProperty
)){
setXMLProperty
(
name
,
getProperty
(
name
));
}
}
}
}
/**
* Allows the name of the local config file name to be changed. The
...
...
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