Indent.
[shishi.git] / gss / misc.c
blob0955777acf829dae84493f77e1aec2f906024dac
1 /* misc.c Implementation of GSS-API Miscellaneous functions.
2 * Copyright (C) 2003 Simon Josefsson
4 * This file is part of Shishi.
6 * Shishi is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * Shishi is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with Shishi; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #include "internal.h"
24 OM_uint32
25 gss_add_oid_set_member (OM_uint32 * minor_status,
26 const gss_OID member_oid, gss_OID_set * oid_set)
30 OM_uint32
31 gss_create_empty_oid_set (OM_uint32 * minor_status, gss_OID_set * oid_set)
35 OM_uint32
36 gss_display_status (OM_uint32 * minor_status,
37 OM_uint32 status_value,
38 int status_type,
39 const gss_OID mech_type,
40 OM_uint32 * message_context, gss_buffer_t status_string)
44 OM_uint32
45 gss_indicate_mechs (OM_uint32 * minor_status, gss_OID_set * mech_set)
49 OM_uint32
50 gss_release_buffer (OM_uint32 * minor_status, gss_buffer_t buffer)
54 OM_uint32
55 gss_release_oid_set (OM_uint32 * minor_status, gss_OID_set * set)
59 OM_uint32
60 gss_test_oid_set_member (OM_uint32 * minor_status,
61 const gss_OID member,
62 const gss_OID_set set, int *present)