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
parent
924a669a1b
commit
e69da98de1
|
|
@ -24,6 +24,12 @@ depends() {
|
||||||
# called by dracut
|
# called by dracut
|
||||||
installkernel() {
|
installkernel() {
|
||||||
instmods cifs ipv6
|
instmods cifs ipv6
|
||||||
|
# hash algos
|
||||||
|
instmods md4 md5 sha256
|
||||||
|
# ciphers
|
||||||
|
instmods aes arc4 des ecb
|
||||||
|
# macs
|
||||||
|
instmods hmac cmac
|
||||||
}
|
}
|
||||||
|
|
||||||
# called by dracut
|
# called by dracut
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue