]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/libgssapi/gss_get_mic.3
libarchive: merge security fix from vendor branch
[FreeBSD/FreeBSD.git] / lib / libgssapi / gss_get_mic.3
1 .\" -*- nroff -*-
2 .\"
3 .\" Copyright (c) 2005 Doug Rabson
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 .\" 1. Redistributions of source code must retain the above copyright
10 .\"    notice, this list of conditions and the following disclaimer.
11 .\" 2. Redistributions in binary form must reproduce the above copyright
12 .\"    notice, this list of conditions and the following disclaimer in the
13 .\"    documentation and/or other materials provided with the distribution.
14 .\"
15 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 .\" SUCH DAMAGE.
26 .\"
27 .\" The following commands are required for all man pages.
28 .Dd January 26, 2010
29 .Dt GSS_GET_MIC 3 PRM
30 .Os
31 .Sh NAME
32 .Nm gss_get_mic ,
33 .Nm gss_sign
34 .Nd Calculate a cryptographic message integrity code (MIC) for a
35 message; integrity service
36 .\" This next command is for sections 2 and 3 only.
37 .\" .Sh LIBRARY
38 .Sh SYNOPSIS
39 .In "gssapi/gssapi.h"
40 .Ft OM_uint32
41 .Fo gss_get_mic
42 .Fa "OM_uint32 *minor_status"
43 .Fa "const gss_ctx_id_t context_handle"
44 .Fa "gss_qop_t qop_req"
45 .Fa "const gss_buffer_t message_buffer"
46 .Fa "gss_buffer_t msg_token"
47 .Fc
48 .Ft OM_uint32
49 .Fo gss_sign
50 .Fa "OM_uint32 *minor_status"
51 .Fa "const gss_ctx_id_t context_handle"
52 .Fa "gss_qop_t qop_req"
53 .Fa "gss_buffer_t message_buffer"
54 .Fa "gss_buffer_t msg_token"
55 .Fc
56 .Sh DESCRIPTION
57 Generates a cryptographic MIC for the supplied message,
58 and places the MIC in a token for transfer to the peer application.
59 The
60 .Fa qop_req
61 parameter allows a choice between several cryptographic algorithms,
62 if supported by the chosen mechanism.
63 .Pp
64 Since some application-level protocols may wish to use tokens emitted
65 by
66 .Fn gss_wrap
67 to provide "secure framing",
68 implementations must support derivation of MICs from zero-length messages.
69 .Pp
70 The
71 .Fn gss_sign
72 routine is an obsolete variant of
73 .Fn gss_get_mic .
74 It is
75 provided for backwards
76 compatibility with applications using the GSS-API V1 interface.
77 A distinct entrypoint (as opposed to #define) is provided,
78 both to allow GSS-API V1 applications to link
79 and to retain the slight parameter type differences between the
80 obsolete versions of this routine and its current form.
81 .Sh PARAMETERS
82 .Bl -tag -width ".It message_buffer"
83 .It minor_status
84 Mechanism specific status code.
85 .It context_handle
86 Identifies the context on which the message will be sent.
87 .It qop_req
88 Specifies requested quality of protection.
89 Callers are encouraged, on portability grounds,
90 to accept the default quality of protection offered by the chosen
91 mechanism,
92 which may be requested by specifying
93 .Dv GSS_C_QOP_DEFAULT
94 for this parameter.
95 If an unsupported protection strength is requested,
96 .Fn gss_get_mic
97 will return a
98 .Fa major_status
99 of
100 .Dv GSS_S_BAD_QOP .
101 .It message_buffer
102 Message to be protected.
103 .It msg_token
104 Buffer to receive token.
105 The application must free storage associated with this buffer after
106 use with a call to
107 .Fn gss_release_buffer .
108 .El
109 .Sh RETURN VALUES
110 .Bl -tag -width ".It GSS_S_CONTEXT_EXPIRED"
111 .It GSS_S_COMPLETE
112 Successful completion
113 .It GSS_S_CONTEXT_EXPIRED
114 The context has already expired
115 .It GSS_S_NO_CONTEXT
116 The context_handle parameter did not identify a valid context
117 .It GSS_S_BAD_QOP
118 The specified QOP is not supported by the mechanism
119 .El
120 .Sh SEE ALSO
121 .Xr gss_release_buffer 3 ,
122 .Xr gss_wrap 3
123 .Sh STANDARDS
124 .Bl -tag -width ".It RFC 2743"
125 .It RFC 2743
126 Generic Security Service Application Program Interface Version 2, Update 1
127 .It RFC 2744
128 Generic Security Service API Version 2 : C-bindings
129 .El
130 .Sh HISTORY
131 The
132 .Nm
133 function first appeared in
134 .Fx 7.0 .
135 .Sh AUTHORS
136 John Wray, Iris Associates
137 .Sh COPYRIGHT
138 Copyright (C) The Internet Society (2000).  All Rights Reserved.
139 .Pp
140 This document and translations of it may be copied and furnished to
141 others, and derivative works that comment on or otherwise explain it
142 or assist in its implementation may be prepared, copied, published
143 and distributed, in whole or in part, without restriction of any
144 kind, provided that the above copyright notice and this paragraph are
145 included on all such copies and derivative works.  However, this
146 document itself may not be modified in any way, such as by removing
147 the copyright notice or references to the Internet Society or other
148 Internet organizations, except as needed for the purpose of
149 developing Internet standards in which case the procedures for
150 copyrights defined in the Internet Standards process must be
151 followed, or as required to translate it into languages other than
152 English.
153 .Pp
154 The limited permissions granted above are perpetual and will not be
155 revoked by the Internet Society or its successors or assigns.
156 .Pp
157 This document and the information contained herein is provided on an
158 "AS IS" basis and THE INTERNET SOCIETY AND THE INTERNET ENGINEERING
159 TASK FORCE DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING
160 BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION
161 HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF
162 MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.