diff --git a/RediSkript-bukkit/pom.xml b/RediSkript-bukkit/pom.xml
index e28cc8e..dc99ee1 100644
--- a/RediSkript-bukkit/pom.xml
+++ b/RediSkript-bukkit/pom.xml
@@ -76,7 +76,7 @@
redis.clients
jedis
- 3.7.0
+ 3.8.0
net.limework
diff --git a/RediSkript-bukkit/src/main/resources/config.yml b/RediSkript-bukkit/src/main/resources/config.yml
index 49cd3f5..0607df1 100644
--- a/RediSkript-bukkit/src/main/resources/config.yml
+++ b/RediSkript-bukkit/src/main/resources/config.yml
@@ -23,13 +23,13 @@ Redis:
#the encryption configuration must be the same across all servers in order to communicate
#use 16 characters long key for AES-128 encryption
- #32 characters long key for AES-256 encryption
+ #32 characters long key for AES-256 encryption (recommended)
#AES-128 is faster, but less secure (but it is not crackable by today's technology as of 2020, may be crackable by quantum computers)
#the AES implementation used in RediSkript uses SIV mode, which makes the same key resistant to cracking for a big count of messages without the need of changing the key very often
EncryptMessages: true
#EncryptionKey and MacKey must be different
- EncryptionKey: "16CHARACTERS KEY"
- MacKey: "16CHARACTERS KEY"
+ EncryptionKey: "32CHARACTERS KEY"
+ MacKey: "32CHARACTERS KEY"
#the channels from which this server can receive messages
@@ -41,4 +41,4 @@ Redis:
Channels:
- "global"
- "servername"
- - "Channel3"
\ No newline at end of file
+ - "Channel3"
diff --git a/RediSkript-core/pom.xml b/RediSkript-core/pom.xml
index 52bcd07..0570b08 100644
--- a/RediSkript-core/pom.xml
+++ b/RediSkript-core/pom.xml
@@ -16,10 +16,10 @@
redis.clients
jedis
- 3.5.1
+ 3.8.0
provided
-
\ No newline at end of file
+