2002-12-26 Havoc Pennington <hp@pobox.com>
[platform/upstream/dbus.git] / dbus / dbus-auth.h
1 /* -*- mode: C; c-file-style: "gnu" -*- */
2 /* dbus-auth.h Authentication
3  *
4  * Copyright (C) 2002  Red Hat Inc.
5  *
6  * Licensed under the Academic Free License version 1.2
7  * 
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  * 
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21  *
22  */
23 #ifndef DBUS_AUTH_H
24 #define DBUS_AUTH_H
25
26 #include <dbus/dbus-macros.h>
27 #include <dbus/dbus-errors.h>
28 #include <dbus/dbus-string.h>
29
30 DBUS_BEGIN_DECLS;
31
32 typedef struct DBusAuth DBusAuth;
33
34 typedef enum
35 {
36   DBUS_AUTH_STATE_WAITING_FOR_INPUT,
37   DBUS_AUTH_STATE_WAITING_FOR_MEMORY,
38   DBUS_AUTH_STATE_HAVE_BYTES_TO_SEND,
39   DBUS_AUTH_STATE_NEED_DISCONNECT,
40   DBUS_AUTH_STATE_AUTHENTICATED_WITH_UNUSED_BYTES,
41   DBUS_AUTH_STATE_AUTHENTICATED
42 } DBusAuthState;
43
44 DBusAuth*     _dbus_auth_server_new        (void);
45 DBusAuth*     _dbus_auth_client_new        (void);
46 void          _dbus_auth_ref               (DBusAuth         *auth);
47 void          _dbus_auth_unref             (DBusAuth         *auth);
48 DBusAuthState _dbus_auth_do_work           (DBusAuth         *auth);
49 dbus_bool_t   _dbus_auth_get_bytes_to_send (DBusAuth          *auth,
50                                             const DBusString **str);
51 void          _dbus_auth_bytes_sent        (DBusAuth          *auth,
52                                             int                bytes_sent);
53 dbus_bool_t   _dbus_auth_bytes_received    (DBusAuth         *auth,
54                                             const DBusString *str);
55 dbus_bool_t   _dbus_auth_get_unused_bytes  (DBusAuth         *auth,
56                                             DBusString       *str);
57 dbus_bool_t   _dbus_auth_needs_encoding    (DBusAuth         *auth);
58 dbus_bool_t   _dbus_auth_encode_data       (DBusAuth         *auth,
59                                             const DBusString *plaintext,
60                                             DBusString       *encoded);
61 dbus_bool_t   _dbus_auth_needs_decoding    (DBusAuth         *auth);
62 dbus_bool_t   _dbus_auth_decode_data       (DBusAuth         *auth,
63                                             const DBusString *encoded,
64                                             DBusString       *plaintext);
65
66
67 DBUS_END_DECLS;
68
69 #endif /* DBUS_AUTH_H */