File tree Expand file tree Collapse file tree 2 files changed +0
-14
lines changed Expand file tree Collapse file tree 2 files changed +0
-14
lines changed Original file line number Diff line number Diff line change @@ -34,18 +34,13 @@ config RPCSEC_GSS_KRB5
34
34
35
35
If unsure, say Y.
36
36
37
- config RPCSEC_GSS_KRB5_CRYPTOSYSTEM
38
- bool
39
- depends on RPCSEC_GSS_KRB5
40
-
41
37
config RPCSEC_GSS_KRB5_ENCTYPES_AES_SHA1
42
38
bool "Enable Kerberos enctypes based on AES and SHA-1"
43
39
depends on RPCSEC_GSS_KRB5
44
40
depends on CRYPTO_CBC && CRYPTO_CTS
45
41
depends on CRYPTO_HMAC && CRYPTO_SHA1
46
42
depends on CRYPTO_AES
47
43
default y
48
- select RPCSEC_GSS_KRB5_CRYPTOSYSTEM
49
44
help
50
45
Choose Y to enable the use of Kerberos 5 encryption types
51
46
that utilize Advanced Encryption Standard (AES) ciphers and
@@ -58,7 +53,6 @@ config RPCSEC_GSS_KRB5_ENCTYPES_CAMELLIA
58
53
depends on CRYPTO_CBC && CRYPTO_CTS && CRYPTO_CAMELLIA
59
54
depends on CRYPTO_CMAC
60
55
default n
61
- select RPCSEC_GSS_KRB5_CRYPTOSYSTEM
62
56
help
63
57
Choose Y to enable the use of Kerberos 5 encryption types
64
58
that utilize Camellia ciphers (RFC 3713) and CMAC digests
@@ -72,7 +66,6 @@ config RPCSEC_GSS_KRB5_ENCTYPES_AES_SHA2
72
66
depends on CRYPTO_HMAC && CRYPTO_SHA256 && CRYPTO_SHA512
73
67
depends on CRYPTO_AES
74
68
default n
75
- select RPCSEC_GSS_KRB5_CRYPTOSYSTEM
76
69
help
77
70
Choose Y to enable the use of Kerberos 5 encryption types
78
71
that utilize Advanced Encryption Standard (AES) ciphers and
Original file line number Diff line number Diff line change 29
29
#endif
30
30
31
31
static struct gss_api_mech gss_kerberos_mech ;
32
-
33
- #if defined(CONFIG_RPCSEC_GSS_KRB5_CRYPTOSYSTEM )
34
32
static int gss_krb5_import_ctx_v2 (struct krb5_ctx * ctx , gfp_t gfp_mask );
35
- #endif
36
33
37
34
static const struct gss_krb5_enctype supported_gss_krb5_enctypes [] = {
38
35
#if defined(CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_AES_SHA1 )
@@ -273,8 +270,6 @@ const struct gss_krb5_enctype *gss_krb5_lookup_enctype(u32 etype)
273
270
}
274
271
EXPORT_SYMBOL_IF_KUNIT (gss_krb5_lookup_enctype );
275
272
276
- #if defined(CONFIG_RPCSEC_GSS_KRB5_CRYPTOSYSTEM )
277
-
278
273
static struct crypto_sync_skcipher *
279
274
gss_krb5_alloc_cipher_v2 (const char * cname , const struct xdr_netobj * key )
280
275
{
@@ -403,8 +398,6 @@ gss_krb5_import_ctx_v2(struct krb5_ctx *ctx, gfp_t gfp_mask)
403
398
goto out ;
404
399
}
405
400
406
- #endif
407
-
408
401
static int
409
402
gss_import_v2_context (const void * p , const void * end , struct krb5_ctx * ctx ,
410
403
gfp_t gfp_mask )
You can’t perform that action at this time.
0 commit comments