mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 08:58:07 +00:00
43988d7685
local cifs functions (repost) Using kernel crypto APIs for DES encryption during LM and NT hash generation instead of local functions within cifs. Source file smbdes.c is deleted sans four functions, one of which uses ecb des functionality provided by kernel crypto APIs. Remove function SMBOWFencrypt. Add return codes to various functions such as calc_lanman_hash, SMBencrypt, and SMBNTencrypt. Includes fix noticed by Dan Carpenter. Signed-off-by: Shirish Pargaonkar <shirishpargaonkar@gmail.com> CC: Dan Carpenter <error27@gmail.com> Acked-by: Jeff Layton <jlayton@redhat.com> Signed-off-by: Steve French <sfrench@us.ibm.com>
17 lines
492 B
Makefile
17 lines
492 B
Makefile
#
|
|
# Makefile for Linux CIFS VFS client
|
|
#
|
|
obj-$(CONFIG_CIFS) += cifs.o
|
|
|
|
cifs-y := cifsfs.o cifssmb.o cifs_debug.o connect.o dir.o file.o inode.o \
|
|
link.o misc.o netmisc.o smbencrypt.o transport.o asn1.o \
|
|
cifs_unicode.o nterr.o xattr.o cifsencrypt.o \
|
|
readdir.o ioctl.o sess.o export.o
|
|
|
|
cifs-$(CONFIG_CIFS_ACL) += cifsacl.o
|
|
|
|
cifs-$(CONFIG_CIFS_UPCALL) += cifs_spnego.o
|
|
|
|
cifs-$(CONFIG_CIFS_DFS_UPCALL) += dns_resolve.o cifs_dfs_ref.o
|
|
|
|
cifs-$(CONFIG_CIFS_FSCACHE) += fscache.o cache.o
|