17c478bd9Sstevel@tonic-gate /*
2*ab9b2e15Sgtb  * Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
37c478bd9Sstevel@tonic-gate  * Use is subject to license terms.
47c478bd9Sstevel@tonic-gate  */
57c478bd9Sstevel@tonic-gate 
67c478bd9Sstevel@tonic-gate #pragma ident	"%Z%%M%	%I%	%E% SMI"
77c478bd9Sstevel@tonic-gate 
87c478bd9Sstevel@tonic-gate /*
97c478bd9Sstevel@tonic-gate  * Copyright 1993 by OpenVision Technologies, Inc.
107c478bd9Sstevel@tonic-gate  *
117c478bd9Sstevel@tonic-gate  * Permission to use, copy, modify, distribute, and sell this software
127c478bd9Sstevel@tonic-gate  * and its documentation for any purpose is hereby granted without fee,
137c478bd9Sstevel@tonic-gate  * provided that the above copyright notice appears in all copies and
147c478bd9Sstevel@tonic-gate  * that both that copyright notice and this permission notice appear in
157c478bd9Sstevel@tonic-gate  * supporting documentation, and that the name of OpenVision not be used
167c478bd9Sstevel@tonic-gate  * in advertising or publicity pertaining to distribution of the software
177c478bd9Sstevel@tonic-gate  * without specific, written prior permission. OpenVision makes no
187c478bd9Sstevel@tonic-gate  * representations about the suitability of this software for any
197c478bd9Sstevel@tonic-gate  * purpose.  It is provided "as is" without express or implied warranty.
207c478bd9Sstevel@tonic-gate  *
217c478bd9Sstevel@tonic-gate  * OPENVISION DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
227c478bd9Sstevel@tonic-gate  * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
237c478bd9Sstevel@tonic-gate  * EVENT SHALL OPENVISION BE LIABLE FOR ANY SPECIAL, INDIRECT OR
247c478bd9Sstevel@tonic-gate  * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
257c478bd9Sstevel@tonic-gate  * USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
267c478bd9Sstevel@tonic-gate  * OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
277c478bd9Sstevel@tonic-gate  * PERFORMANCE OF THIS SOFTWARE.
287c478bd9Sstevel@tonic-gate  */
297c478bd9Sstevel@tonic-gate 
30*ab9b2e15Sgtb #include "gssapiP_krb5.h"
317c478bd9Sstevel@tonic-gate 
327c478bd9Sstevel@tonic-gate /*
33*ab9b2e15Sgtb  * $Id: sign.c 16171 2004-03-15 17:45:01Z raeburn $
347c478bd9Sstevel@tonic-gate  */
357c478bd9Sstevel@tonic-gate 
36*ab9b2e15Sgtb /*ARGSUSED*/
377c478bd9Sstevel@tonic-gate OM_uint32
38*ab9b2e15Sgtb krb5_gss_sign(minor_status, context_handle,
397c478bd9Sstevel@tonic-gate 	      qop_req, message_buffer,
407c478bd9Sstevel@tonic-gate 	      message_token
417c478bd9Sstevel@tonic-gate #ifdef	 _KERNEL
42*ab9b2e15Sgtb 	    , gssd_ctx_verifier
437c478bd9Sstevel@tonic-gate #endif
44*ab9b2e15Sgtb 	    )
457c478bd9Sstevel@tonic-gate      OM_uint32 *minor_status;
467c478bd9Sstevel@tonic-gate      gss_ctx_id_t context_handle;
477c478bd9Sstevel@tonic-gate      int qop_req;
487c478bd9Sstevel@tonic-gate      gss_buffer_t message_buffer;
497c478bd9Sstevel@tonic-gate      gss_buffer_t message_token;
507c478bd9Sstevel@tonic-gate #ifdef	 _KERNEL
51*ab9b2e15Sgtb      OM_uint32 gssd_ctx_verifier;
527c478bd9Sstevel@tonic-gate #endif
537c478bd9Sstevel@tonic-gate {
54*ab9b2e15Sgtb      return(kg_seal(minor_status, context_handle, 0,
557c478bd9Sstevel@tonic-gate 		  qop_req, message_buffer, NULL,
56*ab9b2e15Sgtb 		  message_token, KG_TOK_SIGN_MSG));
577c478bd9Sstevel@tonic-gate }
587c478bd9Sstevel@tonic-gate 
597c478bd9Sstevel@tonic-gate /* V2 interface */
607c478bd9Sstevel@tonic-gate OM_uint32
61*ab9b2e15Sgtb krb5_gss_get_mic(minor_status, context_handle, qop_req,
627c478bd9Sstevel@tonic-gate 		 message_buffer, message_token)
637c478bd9Sstevel@tonic-gate     OM_uint32		*minor_status;
647c478bd9Sstevel@tonic-gate     gss_ctx_id_t	context_handle;
657c478bd9Sstevel@tonic-gate     gss_qop_t		qop_req;
667c478bd9Sstevel@tonic-gate     gss_buffer_t	message_buffer;
677c478bd9Sstevel@tonic-gate     gss_buffer_t	message_token;
687c478bd9Sstevel@tonic-gate {
69*ab9b2e15Sgtb      return(kg_seal(minor_status, context_handle, 0,
707c478bd9Sstevel@tonic-gate 		   (int) qop_req, message_buffer, NULL,
71*ab9b2e15Sgtb 		   message_token, KG_TOK_MIC_MSG));
727c478bd9Sstevel@tonic-gate }
73