summaryrefslogtreecommitdiffstats
path: root/src/include
diff options
context:
space:
mode:
authorGreg Hudson <ghudson@mit.edu>2009-11-27 21:30:51 +0000
committerGreg Hudson <ghudson@mit.edu>2009-11-27 21:30:51 +0000
commit9fde1f049d4f2205a9cccdc82278d93e6eaad748 (patch)
tree229488afe46e5c000e1516d974e6f0b0cdb71358 /src/include
parente0204ebc7e698cf8f6b43780631760f314255d7e (diff)
downloadkrb5-9fde1f049d4f2205a9cccdc82278d93e6eaad748.tar.gz
krb5-9fde1f049d4f2205a9cccdc82278d93e6eaad748.tar.xz
krb5-9fde1f049d4f2205a9cccdc82278d93e6eaad748.zip
Add krb5_key versions of the auth context key accessors, and use them
to simplify the gss-krb5 code a little bit. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@23372 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/include')
-rw-r--r--src/include/krb5/krb5.hin9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/include/krb5/krb5.hin b/src/include/krb5/krb5.hin
index 61f318f2be..675917052b 100644
--- a/src/include/krb5/krb5.hin
+++ b/src/include/krb5/krb5.hin
@@ -2014,12 +2014,21 @@ krb5_error_code KRB5_CALLCONV
krb5_auth_con_getkey(krb5_context, krb5_auth_context, krb5_keyblock **);
krb5_error_code KRB5_CALLCONV
+krb5_auth_con_getkey_k(krb5_context, krb5_auth_context, krb5_key *);
+
+krb5_error_code KRB5_CALLCONV
krb5_auth_con_getsendsubkey(krb5_context, krb5_auth_context, krb5_keyblock **);
krb5_error_code KRB5_CALLCONV
+krb5_auth_con_getsendsubkey_k(krb5_context, krb5_auth_context, krb5_key *);
+
+krb5_error_code KRB5_CALLCONV
krb5_auth_con_getrecvsubkey(krb5_context, krb5_auth_context, krb5_keyblock **);
krb5_error_code KRB5_CALLCONV
+krb5_auth_con_getrecvsubkey_k(krb5_context, krb5_auth_context, krb5_key *);
+
+krb5_error_code KRB5_CALLCONV
krb5_auth_con_setsendsubkey(krb5_context, krb5_auth_context, krb5_keyblock *);
krb5_error_code KRB5_CALLCONV