-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#31 Add JGroups SSL_KEY_EXCHANGE Support
- Port 2157 exposed for SSL socket - /etc/crypto-policies/back-ends/java.config overridden to prevent TLS being disabled
- Loading branch information
1 parent
2e5ea3e
commit 9fea2a8
Showing
6 changed files
with
46 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
jdk.tls.ephemeralDHKeySize=1023 | ||
jdk.certpath.disabledAlgorithms=MD2, MD5, DSA, RSA keySize < 2048 | ||
jdk.tls.disabledAlgorithms=DH keySize < 1023, SSLv2, SSLv3, DHE_DSS, RSA_EXPORT, DHE_DSS_EXPORT, DHE_RSA_EXPORT, DH_DSS_EXPORT, DH_RSA_EXPORT, DH_anon, ECDH_anon, DH_RSA, DH_DSS, ECDH, 3DES_EDE_CBC, DES_CBC, RC4_40, RC4_128, DES40_CBC, RC2, HmacMD5 | ||
jdk.tls.legacyAlgorithms= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#!/bin/bash | ||
set -e | ||
|
||
ADDED_DIR=$(dirname $0)/added | ||
|
||
# Override default java.config file so that tls is not disabled | ||
cp $ADDED_DIR/java.config /etc/crypto-policies/back-ends/java.config | ||
|
||
# Remove dnf and rpm files as package manager not required at runtime | ||
rm -rf /var/lib/rpm /var/lib/dnf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,4 +12,4 @@ packages: | |
- openssl | ||
|
||
execute: | ||
- script: trim.sh | ||
- script: install.sh |
This file was deleted.
Oops, something went wrong.