Add md4 and arc4 modules for ntlm

Some crashkernel targets still use legacy NTLM auth, which
require those (bsc#869496). This patch enumerates all dependent
hash algorithems, because even though most of them are probably
compiled in, older ones (e.g. md4 and arc4) usually aren't.
master
Daniel Molkentin 2016-11-17 11:22:48 +01:00
parent 924a669a1b
commit e69da98de1
1 changed files with 6 additions and 0 deletions

View File

@ -24,6 +24,12 @@ depends() {
# called by dracut
installkernel() {
instmods cifs ipv6
# hash algos
instmods md4 md5 sha256
# ciphers
instmods aes arc4 des ecb
# macs
instmods hmac cmac
}

# called by dracut