support KEYTYPE_ARCFOUR_56

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@14460 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Luke Howard
2005-01-05 02:52:12 +00:00
parent cff2c9fbe3
commit ebc3e1a658
10 changed files with 34 additions and 10 deletions

View File

@@ -127,6 +127,7 @@ gss_wrap_size_limit (
switch (keytype) {
case KEYTYPE_DES :
case KEYTYPE_ARCFOUR:
case KEYTYPE_ARCFOUR_56:
ret = sub_wrap_size(req_output_size, max_input_size, 8, 22);
break;
case KEYTYPE_DES3 :
@@ -475,6 +476,7 @@ OM_uint32 gss_wrap
output_message_buffer, key);
break;
case KEYTYPE_ARCFOUR:
case KEYTYPE_ARCFOUR_56:
ret = _gssapi_wrap_arcfour (minor_status, context_handle, conf_req_flag,
qop_req, input_message_buffer, conf_state,
output_message_buffer, key);