diff options
author | Nicolas Williams <nico@cryptonector.com> | 2012-06-04 17:17:31 -0500 |
---|---|---|
committer | Greg Hudson <ghudson@mit.edu> | 2012-06-06 13:46:17 -0400 |
commit | 0e9bf73d2b8da55aedd25061faefe6a22d9613d3 (patch) | |
tree | d39c9bf38401f5fec0c88f81dfc6945486f470d3 /src/include/kdb.h | |
parent | dacb62f899329496f84e8b4bbc4c4dc94e585bd1 (diff) | |
download | krb5-0e9bf73d2b8da55aedd25061faefe6a22d9613d3.tar.gz krb5-0e9bf73d2b8da55aedd25061faefe6a22d9613d3.tar.xz krb5-0e9bf73d2b8da55aedd25061faefe6a22d9613d3.zip |
Add control over session key enctype negotiation
Adds a principal string attribute named "session_enctypes" which can
specify what enctypes the principal supports for session keys. (For
what it's worth, this actually allows one to list des-cbc-md5 as a
supported session key enctype, though obviously this hardly matters
now.)
Add a [realms] section parameter for specifying whether to assume that
principals (which lack the session_enctypes attribute) support
des-cbc-crc for session keys. This allows those who still need to use
allow_weak_crypto=true, for whatever reason, to start reducing the
number of tickets issued with des-cbc-crc session keys to clients
which still give des-cbc-crc preference in their default_tgs_enctypes
list.
[ghudson@mit.edu: Miscellaneous edits, cleanups, and fixes; refactored
test script; documented session_enctypes attribute]
Diffstat (limited to 'src/include/kdb.h')
-rw-r--r-- | src/include/kdb.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/include/kdb.h b/src/include/kdb.h index 67c403155..291a05bb6 100644 --- a/src/include/kdb.h +++ b/src/include/kdb.h @@ -131,6 +131,9 @@ #define KRB5_KDB_FLAGS_S4U ( KRB5_KDB_FLAG_PROTOCOL_TRANSITION | \ KRB5_KDB_FLAG_CONSTRAINED_DELEGATION ) +/* String attribute names recognized by krb5 */ +#define KRB5_KDB_SK_SESSION_ENCTYPES "session_enctypes" + #if !defined(_WIN32) /* |