f18ebf3adf
- Skip SHA1 test in 20-test_dgst.t when in FIPS mode * Add openssl-Skip_SHA1-test-in-FIPS-mode.patch - FIPS: add openssl-1_1-fips-bsc1190652_release_num_in_version_string.patch * bsc#1190652 - Provide a service to output module name/identifier and version - Sync patches with SLE: * Merge openssl-keep_EVP_KDF_functions_version.patch into openssl-1.1.1-evp-kdf.patch * Refresh openssl-1_1-fips-bsc1215215_fips_in_version_string.patch * Remove openssl-no-date.patch OBS-URL: https://build.opensuse.org/request/show/1128352 OBS-URL: https://build.opensuse.org/package/show/security:tls/openssl-1_1?expand=0&rev=152
16 lines
677 B
Diff
16 lines
677 B
Diff
Index: openssl-1.1.1w/test/recipes/20-test_dgst.t
|
|
===================================================================
|
|
--- openssl-1.1.1w.orig/test/recipes/20-test_dgst.t
|
|
+++ openssl-1.1.1w/test/recipes/20-test_dgst.t
|
|
@@ -104,8 +105,8 @@ SKIP: {
|
|
}
|
|
|
|
SKIP: {
|
|
- skip "dgst with engine is not supported by this OpenSSL build", 1
|
|
- if disabled("engine") || disabled("dynamic-engine");
|
|
+ skip "dgst with engine is not supported by this OpenSSL build or we are in FIPS mode", 1
|
|
+ if disabled("engine") || disabled("dynamic-engine") || ($ENV{OPENSSL_FORCE_FIPS_MODE});
|
|
|
|
subtest "SHA1 generation by engine with `dgst` CLI" => sub {
|
|
plan tests => 1;
|