Merge from vendor branch HEIMDAL:
[dragonfly.git] / crypto / heimdal-0.6.3 / lib / gssapi / v1.c
1 /*
2  * Copyright (c) 1997 Kungliga Tekniska Högskolan
3  * (Royal Institute of Technology, Stockholm, Sweden). 
4  * All rights reserved. 
5  *
6  * Redistribution and use in source and binary forms, with or without 
7  * modification, are permitted provided that the following conditions 
8  * are met: 
9  *
10  * 1. Redistributions of source code must retain the above copyright 
11  *    notice, this list of conditions and the following disclaimer. 
12  *
13  * 2. Redistributions in binary form must reproduce the above copyright 
14  *    notice, this list of conditions and the following disclaimer in the 
15  *    documentation and/or other materials provided with the distribution. 
16  *
17  * 3. Neither the name of the Institute nor the names of its contributors 
18  *    may be used to endorse or promote products derived from this software 
19  *    without specific prior written permission. 
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND 
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE 
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 
31  * SUCH DAMAGE. 
32  */
33
34 #include "gssapi_locl.h"
35
36 RCSID("$Id: v1.c,v 1.2 1999/12/02 17:05:04 joda Exp $");
37
38 /* These functions are for V1 compatibility */
39
40 OM_uint32 gss_sign
41            (OM_uint32 * minor_status,
42             gss_ctx_id_t context_handle,
43             int qop_req,
44             gss_buffer_t message_buffer,
45             gss_buffer_t message_token
46            )
47 {
48   return gss_get_mic(minor_status,
49         context_handle,
50         (gss_qop_t)qop_req,
51         message_buffer,
52         message_token);
53 }
54
55 OM_uint32 gss_verify
56            (OM_uint32 * minor_status,
57             gss_ctx_id_t context_handle,
58             gss_buffer_t message_buffer,
59             gss_buffer_t token_buffer,
60             int * qop_state
61            )
62 {
63   return gss_verify_mic(minor_status,
64         context_handle,
65         message_buffer,
66         token_buffer,
67         (gss_qop_t *)qop_state);
68 }
69
70 OM_uint32 gss_seal
71            (OM_uint32 * minor_status,
72             gss_ctx_id_t context_handle,
73             int conf_req_flag,
74             int qop_req,
75             gss_buffer_t input_message_buffer,
76             int * conf_state,
77             gss_buffer_t output_message_buffer
78            )
79 {
80   return gss_wrap(minor_status,
81         context_handle,
82         conf_req_flag,
83         (gss_qop_t)qop_req,
84         input_message_buffer,
85         conf_state,
86         output_message_buffer);
87 }
88
89 OM_uint32 gss_unseal
90            (OM_uint32 * minor_status,
91             gss_ctx_id_t context_handle,
92             gss_buffer_t input_message_buffer,
93             gss_buffer_t output_message_buffer,
94             int * conf_state,
95             int * qop_state
96            )
97 {
98   return gss_unwrap(minor_status,
99         context_handle,
100         input_message_buffer,
101         output_message_buffer,
102         conf_state,
103         (gss_qop_t *)qop_state);
104 }