@@ -8,21 +8,21 @@ commandTests:
88 - name : " OpenSSL version"
99 command : " openssl"
1010 args : ["version"]
11- expectedOutput : ["^OpenSSL 1.0.2zd -fips 15 Mar 2022\n$"]
11+ expectedOutput : ["^OpenSSL 1.0.2ze -fips 3 May 2022\n$"]
1212 - name : " libssl.so version"
1313 setup : [["apt-get", "update"], ["apt-get", "install", "-y", "binutils"]]
1414 command : " bash"
1515 args :
1616 - -c
1717 - find / -type f -name libssl.so* -exec strings {} \; | grep "^OpenSSL\s\([0-9]\.\)\{2\}[0-9]" | tr -d '\n'
18- expectedOutput : ["^OpenSSL 1.0.2zd -fips 15 Mar 2022$"]
18+ expectedOutput : ["^OpenSSL 1.0.2ze -fips 3 May 2022$"]
1919 - name : " libcrypto.so version"
2020 setup : [["apt-get", "update"], ["apt-get", "install", "-y", "binutils"]]
2121 command : " bash"
2222 args :
2323 - -c
2424 - find / -type f -name libcrypto.so* -exec strings {} \; | grep "^OpenSSL\s\([0-9]\.\)\{2\}[0-9]" | tr -d '\n'
25- expectedOutput : ["^OpenSSL 1.0.2zd -fips 15 Mar 2022$"]
25+ expectedOutput : ["^OpenSSL 1.0.2ze -fips 3 May 2022$"]
2626 - name : " OpenSSL accepts FIPS compliant algorithms"
2727 command : " openssl"
2828 args :
@@ -52,21 +52,21 @@ commandTests:
5252 args :
5353 - -c
5454 - find / -name *ssl*.*so* | grep ruby | xargs ldd | grep "libcrypto.so" | cut -d' ' -f3 | xargs strings | grep "^OpenSSL\s\([0-9]\.\)\{2\}[0-9]" | tr -d '\n'
55- expectedOutput : ["^OpenSSL 1.0.2zd -fips 15 Mar 2022$"]
55+ expectedOutput : ["^OpenSSL 1.0.2ze -fips 3 May 2022$"]
5656 - name : " Ruby linked with valid libssl.so version"
5757 setup : [["apt-get", "update"], ["apt-get", "install", "-y", "binutils"]]
5858 command : " bash"
5959 args :
6060 - -c
6161 - find / -name *ssl*.*so* | grep ruby | xargs ldd | grep "libssl.so" | cut -d' ' -f3 | xargs strings | grep "^OpenSSL\s\([0-9]\.\)\{2\}[0-9]" | tr -d '\n'
62- expectedOutput : ["^OpenSSL 1.0.2zd -fips 15 Mar 2022$"]
62+ expectedOutput : ["^OpenSSL 1.0.2ze -fips 3 May 2022$"]
6363 - name : " Ruby sees valid OpenSSL version"
6464 command : " ruby"
6565 args :
6666 - -ropenssl
6767 - -e
6868 - ' puts OpenSSL::OPENSSL_LIBRARY_VERSION'
69- expectedOutput : ["^OpenSSL 1.0.2zd -fips 15 Mar 2022\n$"]
69+ expectedOutput : ["^OpenSSL 1.0.2ze -fips 3 May 2022\n$"]
7070 - name : " Ruby accepts FIPS compliant algorithms"
7171 command : " ruby"
7272 args :
@@ -92,14 +92,14 @@ commandTests:
9292 args :
9393 - -c
9494 - find / -type f -name libpq.so* | xargs ldd | grep "libcrypto.so" | cut -d' ' -f3 | xargs strings | grep "^OpenSSL\s\([0-9]\.\)\{2\}[0-9]" | tr -d '\n'
95- expectedOutput : ["^OpenSSL 1.0.2zd -fips 15 Mar 2022$"]
95+ expectedOutput : ["^OpenSSL 1.0.2ze -fips 3 May 2022$"]
9696 - name : " libpq linked with valid libssl.so version"
9797 setup : [["apt-get", "update"], ["apt-get", "install", "-y", "binutils"]]
9898 command : " bash"
9999 args :
100100 - -c
101101 - find / -type f -name libpq.so* | xargs ldd | grep "libssl.so" | cut -d' ' -f3 | xargs strings | grep "^OpenSSL\s\([0-9]\.\)\{2\}[0-9]" | tr -d '\n'
102- expectedOutput : ["^OpenSSL 1.0.2zd -fips 15 Mar 2022$"]
102+ expectedOutput : ["^OpenSSL 1.0.2ze -fips 3 May 2022$"]
103103 - name : " Postgres version"
104104 command : " pg_dump"
105105 args : ["--version"]
0 commit comments