aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/sunrpc
diff options
context:
space:
mode:
authorJ. Bruce Fields <bfields@fieldses.org>2005-10-13 16:55:08 -0400
committerTrond Myklebust <Trond.Myklebust@netapp.com>2005-10-19 02:19:45 -0400
commitbfa91516b57483fc9c81d8d90325fd2c3c16ac48 (patch)
treeed5c63ec1aa88152b0991370f4a1dbcfff0cd15a /include/linux/sunrpc
parentf7b3af64c653c73feb060a9f94f2df9ab4bba4c3 (diff)
RPCSEC_GSS: krb5 pre-privacy cleanup
The code this was originally derived from processed wrap and mic tokens using the same functions. This required some contortions, and more would be required with the addition of xdr_buf's, so it's better to separate out the two code paths. In preparation for adding privacy support, remove the last vestiges of the old wrap token code. Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu> Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'include/linux/sunrpc')
-rw-r--r--include/linux/sunrpc/gss_krb5.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/include/linux/sunrpc/gss_krb5.h b/include/linux/sunrpc/gss_krb5.h
index ffe31d2eb9ec..cb35833e2ae3 100644
--- a/include/linux/sunrpc/gss_krb5.h
+++ b/include/linux/sunrpc/gss_krb5.h
@@ -121,13 +121,12 @@ make_checksum(s32 cksumtype, char *header, int hdrlen, struct xdr_buf *body,
121u32 121u32
122krb5_make_token(struct krb5_ctx *context_handle, int qop_req, 122krb5_make_token(struct krb5_ctx *context_handle, int qop_req,
123 struct xdr_buf *input_message_buffer, 123 struct xdr_buf *input_message_buffer,
124 struct xdr_netobj *output_message_buffer, int toktype); 124 struct xdr_netobj *output_message_buffer);
125 125
126u32 126u32
127krb5_read_token(struct krb5_ctx *context_handle, 127krb5_read_token(struct krb5_ctx *context_handle,
128 struct xdr_netobj *input_token_buffer, 128 struct xdr_netobj *input_token_buffer,
129 struct xdr_buf *message_buffer, 129 struct xdr_buf *message_buffer, int *qop_state);
130 int *qop_state, int toktype);
131 130
132u32 131u32
133krb5_encrypt(struct crypto_tfm * key, 132krb5_encrypt(struct crypto_tfm * key,