mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-01-25 01:04:29 +01:00
This will allow us to run a VM in fips mode. The intention is to check if the host is running in fips mode and then start a container in fips mode as well. Fixes #787 Signed-off-by: Archana Shinde <archana.m.shinde@intel.com>
18 lines
584 B
Plaintext
18 lines
584 B
Plaintext
# Need decompressors for root filesystems and kernels.
|
|
# Do we need all of these?
|
|
CONFIG_CRYPTO=y
|
|
# Deflate used by IPSec and IPCOMP protocols
|
|
# Also selects ZLIB and a couple of other algos
|
|
CONFIG_CRYPTO_DEFLATE=y
|
|
CONFIG_XZ_DEC=y
|
|
CONFIG_ZLIB_DEFLATE=y
|
|
# FIXME - check, do we need gzip?
|
|
# https://github.com/kata-containers/packaging/issues/483
|
|
CONFIG_DECOMPRESS_GZIP=y
|
|
# Some items required by systemd: https://github.com/systemd/systemd/blob/master/README
|
|
CONFIG_CRYPTO_USER_API=y
|
|
CONFIG_CRYPTO_USER_API_HASH=y
|
|
CONFIG_CRYPTO_SHA256=y
|
|
CONFIG_CRYPTO_FIPS=y
|
|
CONFIG_CRYPTO_ANSI_CPRNG=y
|