diff options
| author | Jacques Vidrine <nectar@FreeBSD.org> | 2004-04-03 21:22:55 +0000 |
|---|---|---|
| committer | Jacques Vidrine <nectar@FreeBSD.org> | 2004-04-03 21:22:55 +0000 |
| commit | 1c43270ada91f3473174c2bf81fba64963b7e4ac (patch) | |
| tree | f009994dd04757b68eff8742614cca170aff5bb3 /crypto/heimdal/lib/gssapi/unwrap.c | |
| parent | 855f569304145440ca790a47edc5e6341c856220 (diff) | |
Notes
Diffstat (limited to 'crypto/heimdal/lib/gssapi/unwrap.c')
| -rw-r--r-- | crypto/heimdal/lib/gssapi/unwrap.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/crypto/heimdal/lib/gssapi/unwrap.c b/crypto/heimdal/lib/gssapi/unwrap.c index f2009be68ae6..b798438dc614 100644 --- a/crypto/heimdal/lib/gssapi/unwrap.c +++ b/crypto/heimdal/lib/gssapi/unwrap.c @@ -33,7 +33,7 @@ #include "gssapi_locl.h" -RCSID("$Id: unwrap.c,v 1.22 2003/03/16 17:54:43 lha Exp $"); +RCSID("$Id: unwrap.c,v 1.22.2.1 2003/09/18 22:05:22 lha Exp $"); OM_uint32 gss_krb5_get_remotekey(const gss_ctx_id_t context_handle, @@ -407,6 +407,11 @@ OM_uint32 gss_unwrap input_message_buffer, output_message_buffer, conf_state, qop_state, key); break; + case KEYTYPE_ARCFOUR: + ret = _gssapi_unwrap_arcfour (minor_status, context_handle, + input_message_buffer, output_message_buffer, + conf_state, qop_state, key); + break; default : *minor_status = KRB5_PROG_ETYPE_NOSUPP; ret = GSS_S_FAILURE; |
