Rename contents to keyvalue.

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@1899 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Johan Danielsson
1997-06-11 22:04:53 +00:00
parent c103d934bf
commit c9a61cb7b9
10 changed files with 14 additions and 14 deletions

View File

@@ -48,7 +48,7 @@ OM_uint32 gss_get_mic
md5_finito (&md5, hash);
memset (&zero, 0, sizeof(zero));
memcpy (&key, context_handle->auth_context->key.contents.data,
memcpy (&key, context_handle->auth_context->key.keyvalue.data,
sizeof(key));
des_set_key (&key, schedule);
des_cbc_cksum ((des_cblock *)hash,

View File

@@ -151,9 +151,9 @@ init_auth
}
(*context_handle)->auth_context->key.keytype = cred->session.keytype;
krb5_data_copy (&(*context_handle)->auth_context->key.contents,
cred->session.contents.data,
cred->session.contents.length);
krb5_data_copy (&(*context_handle)->auth_context->key.keyvalue,
cred->session.keyvalue.data,
cred->session.keyvalue.length);
kret = create_8003_checksum (input_chan_bindings,
flags,

View File

@@ -50,7 +50,7 @@ OM_uint32 gss_unwrap
md5_finito (&md5, hash);
memset (&zero, 0, sizeof(zero));
memcpy (&key, context_handle->auth_context->key.contents.data,
memcpy (&key, context_handle->auth_context->key.keyvalue.data,
sizeof(key));
des_set_key (&key, schedule);
des_cbc_cksum ((des_cblock *)hash,

View File

@@ -47,7 +47,7 @@ OM_uint32 gss_verify_mic
md5_finito (&md5, hash);
memset (&zero, 0, sizeof(zero));
memcpy (&key, context_handle->auth_context->key.contents.data,
memcpy (&key, context_handle->auth_context->key.keyvalue.data,
sizeof(key));
des_set_key (&key, schedule);
des_cbc_cksum ((des_cblock *)hash,

View File

@@ -53,7 +53,7 @@ OM_uint32 gss_wrap
md5_finito (&md5, hash);
memset (&zero, 0, sizeof(zero));
memcpy (&key, context_handle->auth_context->key.contents.data,
memcpy (&key, context_handle->auth_context->key.keyvalue.data,
sizeof(key));
des_set_key (&key, schedule);
des_cbc_cksum ((des_cblock *)hash,