Displaying 3 results from an estimated 3 matches for "gss_export_name".
Did you mean:
get_export_name
2006 Feb 27
2
Bug in Kerberos support for openssh.
...S_C_NO_CHANNEL_BINDINGS, &ctx->client, &mech,
send_tok, flags, NULL, &ctx->client_creds);
and saving off ctx->client for later use. Under the hood, ctx->client
is simply a gss_union_name_t.
Later on (not much further later), ssh calls
if ((ctx->major = gss_export_name(&ctx->minor, ctx->client,
&ename))) {
ssh_gssapi_error(ctx);
return (ctx->major);
}
Here ctx->client is passed in but gss_export_name assumes that the input
name is a krb5_principal. Not surprisingly, the datatype mismatch...
2003 Aug 10
9
updated gssapi diff
..._mechs[i];
+ i++;
+ }
+
+ if (client->mech == NULL)
+ return GSS_S_FAILURE;
+
+ if ((ctx->major = gss_display_name(&ctx->minor, ctx->client,
+ &client->displayname, NULL))) {
+ ssh_gssapi_error(ctx);
+ return (ctx->major);
+ }
+
+ if ((ctx->major = gss_export_name(&ctx->minor, ctx->client,
+ &ename))) {
+ ssh_gssapi_error(ctx);
+ return (ctx->major);
+ }
+
+ if ((ctx->major = ssh_gssapi_parse_ename(ctx,&ename,
+ &client->exportedname))) {
+ return (ctx->major);
+ }
+
+ /* We can't copy this structure, so we ju...
2010 May 02
2
samba4 make error - drsblobs.so
.../lib/gssapi/mech/gss_release_buffer.c
Compiling heimdal/lib/gssapi/mech/gss_release_oid.c
Compiling heimdal/lib/gssapi/mech/gss_test_oid_set_member.c
Compiling heimdal/lib/gssapi/mech/gss_release_cred.c
Compiling heimdal/lib/gssapi/mech/gss_set_sec_context_option.c
Compiling heimdal/lib/gssapi/mech/gss_export_name.c
Compiling heimdal/lib/gssapi/mech/gss_seal.c
Compiling heimdal/lib/gssapi/mech/gss_acquire_cred.c
Compiling heimdal/lib/gssapi/mech/gss_unseal.c
Compiling heimdal/lib/gssapi/mech/gss_verify_mic.c
Compiling heimdal/lib/gssapi/mech/gss_accept_sec_context.c
Compiling heimdal/lib/gssapi/mech/gss_inqu...