diff options
author | Mohammed Rafi KC <rkavunga@redhat.com> | 2019-10-22 16:02:28 +0530 |
---|---|---|
committer | gluster-ant <bugzilla-bot@gluster.org> | 2019-10-22 16:02:28 +0530 |
commit | ef2887e304ccb0e9ed7491f0a3a3f4f39988dd9f (patch) | |
tree | f544b1db9907ad274c7553f007ab6c77cd97ae41 /tests/features/ssl-ciphers.t | |
parent | 8a1fd235ffe1442622f9f86327a2918280fc8eba (diff) | |
download | glusterfs-ef2887e304ccb0e9ed7491f0a3a3f4f39988dd9f.tar.gz glusterfs-ef2887e304ccb0e9ed7491f0a3a3f4f39988dd9f.tar.xz glusterfs-ef2887e304ccb0e9ed7491f0a3a3f4f39988dd9f.zip |
ssl/test: Change the rsa key length to 2048
On a rhel-8 machine, we need to have a key length
greater than or eaual to 2048. So changing the values
to 2048 to pass the test.
Credits: Mohit Agrawal <moagrawal@redhat.com>
Change-Id: I0f21db4d737203d0b2e44e7e61f50ae1279795ad
Updates: bz#1756900
Signed-off-by: Mohammed Rafi KC <rkavunga@redhat.com>
Diffstat (limited to 'tests/features/ssl-ciphers.t')
-rw-r--r-- | tests/features/ssl-ciphers.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/features/ssl-ciphers.t b/tests/features/ssl-ciphers.t index 7e1e1996ac..7621939a71 100644 --- a/tests/features/ssl-ciphers.t +++ b/tests/features/ssl-ciphers.t @@ -65,7 +65,7 @@ TEST glusterd TEST pidof glusterd TEST $CLI volume info; -TEST openssl genrsa -out $SSL_KEY 1024 2>/dev/null +TEST openssl genrsa -out $SSL_KEY 2048 2>/dev/null TEST openssl req -config $SSL_CFG -new -key $SSL_KEY -x509 \ -subj /CN=CA -out $SSL_CA TEST openssl req -config $SSL_CFG -new -key $SSL_KEY \ |