From: Alexey Kodanev Date: Fri, 29 Nov 2019 12:02:41 +0000 (+0300) Subject: fips: add 'ofb' and 'cts' block cipher modes X-Git-Tag: 050~79 X-Git-Url: http://git.ipfire.org/?p=thirdparty%2Fdracut.git;a=commitdiff_plain;h=958ca9e912d3a3a1ebe79a8d4fc36de2a60e4381 fips: add 'ofb' and 'cts' block cipher modes Add cts, Linux-5.0 commit: * 196ad6043e9f ("crypto: testmgr - mark cts(cbc(aes)) as FIPS allowed") Linux 4.20 commits for 'ofb': * dfb89ab3f0a7 ("crypto: tcrypt - add OFB functional tests") * e497c51896b3 ("crypto: ofb - add output feedback mode") Signed-off-by: Alexey Kodanev --- diff --git a/modules.d/01fips/module-setup.sh b/modules.d/01fips/module-setup.sh index a792f5494..b723dc6ca 100755 --- a/modules.d/01fips/module-setup.sh +++ b/modules.d/01fips/module-setup.sh @@ -27,7 +27,7 @@ installkernel() { _fipsmodules+="cipher_null des3_ede aes cfb " # Modes/templates: - _fipsmodules+="ecb cbc ctr xts gcm ccm authenc hmac cmac " + _fipsmodules+="ecb cbc ctr xts gcm ccm authenc hmac cmac ofb cts " # Compression algs: _fipsmodules+="deflate lzo zlib "