Skip to content

Commit

Permalink
Merge pull request #2119 from jan-cerny/disable_sha1
Browse files Browse the repository at this point in the history
Disable MD5 and SHA-1 by default
  • Loading branch information
evgenyz authored Jun 5, 2024
2 parents 0c3f815 + f00b2d8 commit f2e44fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -263,8 +263,8 @@ if (WIN32)
endif()
cmake_dependent_option(ENABLE_PROBES_WINDOWS "build OVAL probes for the Windows OVAL tests" ${IS_WIN32} "ENABLE_PROBES" OFF)

option(OPENSCAP_ENABLE_SHA1 "Enable using the SHA-1 algorithm" ON)
option(OPENSCAP_ENABLE_MD5 "Enable using the MD5 algorithm" ON)
option(OPENSCAP_ENABLE_SHA1 "Enable using the SHA-1 algorithm" OFF)
option(OPENSCAP_ENABLE_MD5 "Enable using the MD5 algorithm" OFF)

# INDEPENDENT PROBES
cmake_dependent_option(OPENSCAP_PROBE_INDEPENDENT_ENVIRONMENTVARIABLE "Independent environmentvariable probe" ON "ENABLE_PROBES_INDEPENDENT" OFF)
Expand Down

0 comments on commit f2e44fd

Please sign in to comment.