Skip to content

Commit

Permalink
sweep: #7324 fixes SSL 2048
Browse files Browse the repository at this point in the history
  • Loading branch information
fstagni authored and web-flow committed Nov 30, 2023
1 parent a23e350 commit 32090bc
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
import selectors
import threading

from diraccfg import CFG
from pytest import fixture

from diraccfg import CFG
from DIRAC.Core.Security.test.x509TestUtilities import CERTDIR, USERCERT, getCertOption
from DIRAC.ConfigurationSystem.Client.ConfigurationData import gConfigurationData
from DIRAC.Core.DISET.private.Transports import PlainTransport, M2SSLTransport
from DIRAC.Core.DISET.private.Transports import M2SSLTransport, PlainTransport
from DIRAC.Core.Security.test.x509TestUtilities import CERTDIR, USERCERT, getCertOption

# TODO: Expired hostcert
# TODO: Expired usercert
Expand Down
2 changes: 1 addition & 1 deletion tests/openssl_config_DIRACDockerDevBox
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[ req ]
default_bits = 1024
default_bits = 2048
encrypt_key = yes
distinguished_name = req_dn
prompt = no
Expand Down
2 changes: 1 addition & 1 deletion tests/openssl_config_DIRACDockerDevBox_usr
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[ req ]
default_bits = 1024
default_bits = 2048
encrypt_key = yes
distinguished_name = req_dn
prompt = no
Expand Down

0 comments on commit 32090bc

Please sign in to comment.