Updated to release 1.11.1 (Bugfixes release only)
[siplcs.git] / src / core / sip-sec-mech.h
blob051011f430de1e34c08404c789863e99001f4c38
1 /**
2 * @file sip-sec-mech.h
4 * pidgin-sipe
6 * Copyright (C) 2009 pier11 <pier11@operamail.com>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 /* Mechanism wrappers API (Inspired by GSS-API)
25 * All mechanisms should implement this API
27 * Current mechanisms are: Kerberos/GSS-API, sipe's NTLM and SSPI.
30 #define SIP_SEC_E_OK 0
31 #define SIP_SEC_E_INTERNAL_ERROR (-2146893052)
32 #define SIP_SEC_I_CONTINUE_NEEDED 590610
34 typedef unsigned long sip_uint32;
36 typedef struct {
37 gsize length;
38 guint8 *value;
39 } SipSecBuffer;
41 typedef SipSecContext
42 (*sip_sec_create_context_func)(guint type);
44 typedef sip_uint32
45 (*sip_sec_acquire_cred_func)(SipSecContext context,
46 const char *domain,
47 const char *username,
48 const char *password);
50 typedef sip_uint32
51 (*sip_sec_init_context_func)(SipSecContext context,
52 SipSecBuffer in_buff,
53 SipSecBuffer *out_buff,
54 const char *service_name);
56 typedef void
57 (*sip_sec_destroy_context_func)(SipSecContext context);
59 typedef sip_uint32
60 (*sip_sec_make_signature_func)(SipSecContext context,
61 const char *message,
62 SipSecBuffer *signature);
64 typedef sip_uint32
65 (*sip_sec_verify_signature_func)(SipSecContext context,
66 const char *message,
67 SipSecBuffer signature);
69 struct sip_sec_context {
70 sip_sec_acquire_cred_func acquire_cred_func;
71 sip_sec_init_context_func init_context_func;
72 sip_sec_destroy_context_func destroy_context_func;
73 sip_sec_make_signature_func make_signature_func;
74 sip_sec_verify_signature_func verify_signature_func;
75 /** Single Sign-On request flag 0=FALSE */
76 int sso;
77 /** Security Context expiration interval in seconds */
78 int expires;
79 /** 0 - FALSE; otherwise TRUE */
80 int is_connection_based;