aboutsummaryrefslogtreecommitdiffstats
path: root/net/rxrpc
diff options
context:
space:
mode:
Diffstat (limited to 'net/rxrpc')
-rw-r--r--net/rxrpc/Kconfig5
-rw-r--r--net/rxrpc/rxkad.c1
2 files changed, 6 insertions, 0 deletions
diff --git a/net/rxrpc/Kconfig b/net/rxrpc/Kconfig
index d72380e304ae..8750f6da6bc7 100644
--- a/net/rxrpc/Kconfig
+++ b/net/rxrpc/Kconfig
@@ -30,6 +30,11 @@ config AF_RXRPC_DEBUG
30config RXKAD 30config RXKAD
31 tristate "RxRPC Kerberos security" 31 tristate "RxRPC Kerberos security"
32 depends on AF_RXRPC && KEYS 32 depends on AF_RXRPC && KEYS
33 select CRYPTO
34 select CRYPTO_MANAGER
35 select CRYPTO_BLKCIPHER
36 select CRYPTO_PCBC
37 select CRYPTO_FCRYPT
33 help 38 help
34 Provide kerberos 4 and AFS kaserver security handling for AF_RXRPC 39 Provide kerberos 4 and AFS kaserver security handling for AF_RXRPC
35 through the use of the key retention service. 40 through the use of the key retention service.
diff --git a/net/rxrpc/rxkad.c b/net/rxrpc/rxkad.c
index 1eaf529efac1..5ec705144e10 100644
--- a/net/rxrpc/rxkad.c
+++ b/net/rxrpc/rxkad.c
@@ -18,6 +18,7 @@
18#include <linux/ctype.h> 18#include <linux/ctype.h>
19#include <net/sock.h> 19#include <net/sock.h>
20#include <net/af_rxrpc.h> 20#include <net/af_rxrpc.h>
21#define rxrpc_debug rxkad_debug
21#include "ar-internal.h" 22#include "ar-internal.h"
22 23
23#define RXKAD_VERSION 2 24#define RXKAD_VERSION 2