 16f56ac4cd
			
		
	
	16f56ac4cd
	
	
	
		
			
			git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@1579 ec53bebd-3082-4978-b11e-865c3cabbd6b
		
			
				
	
	
		
			31 lines
		
	
	
		
			462 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			462 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /* $Id$ */
 | |
| 
 | |
| #ifndef GSSAPI_LOCL_H
 | |
| #define GSSAPI_LOCL_H
 | |
| 
 | |
| #include <stdlib.h>
 | |
| #include <string.h>
 | |
| 
 | |
| #include <gssapi.h>
 | |
| 
 | |
| #include <krb5.h>
 | |
| #include <krb5_locl.h>
 | |
| 
 | |
| extern krb5_context gssapi_krb5_context;
 | |
| 
 | |
| void gssapi_krb5_init (void);
 | |
| 
 | |
| OM_uint32
 | |
| gssapi_krb5_encapsulate(
 | |
| 			krb5_data *in_data,
 | |
| 			gss_buffer_t output_token,
 | |
| 			u_char *type);
 | |
| 
 | |
| OM_uint32
 | |
| gssapi_krb5_decapsulate(
 | |
| 			gss_buffer_t input_token_buffer,
 | |
| 			krb5_data *out_data,
 | |
| 			u_char *type);
 | |
| 
 | |
| #endif
 |