/usr/include/libaccount-plugin/oauth-plugin.h is in libaccount-plugin-1.0-dev 0.1.8+16.04.20160201-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 | /* vi: set et sw=4 ts=4 cino=t0,(0: */
/* -*- Mode: C; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of libaccount-plugin
*
* Copyright (C) 2012 Canonical Ltd.
*
* Contact: Alberto Mardegan <alberto.mardegan@canonical.com>
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License version 3, as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranties of
* MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _AP_OAUTH_PLUGIN_H_
#define _AP_OAUTH_PLUGIN_H_
#include <libaccount-plugin/plugin.h>
G_BEGIN_DECLS
#define AP_TYPE_OAUTH_PLUGIN (ap_oauth_plugin_get_type ())
#define AP_OAUTH_PLUGIN(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), AP_TYPE_OAUTH_PLUGIN, ApOAuthPlugin))
#define AP_OAUTH_PLUGIN_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), AP_TYPE_OAUTH_PLUGIN, ApOAuthPluginClass))
#define AP_IS_OAUTH_PLUGIN(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), AP_TYPE_OAUTH_PLUGIN))
#define AP_IS_OAUTH_PLUGIN_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), AP_TYPE_OAUTH_PLUGIN))
#define AP_OAUTH_PLUGIN_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), AP_TYPE_OAUTH_PLUGIN, ApOAuthPluginClass))
typedef struct _ApOAuthPluginClass ApOAuthPluginClass;
typedef struct _ApOAuthPluginPrivate ApOAuthPluginPrivate;
typedef struct _ApOAuthPlugin ApOAuthPlugin;
/**
* ApOAuthPluginClass:
*
* Base class for account plugins.
*/
struct _ApOAuthPluginClass
{
ApPluginClass parent_class;
void (*_ap_reserved1) (void);
void (*_ap_reserved2) (void);
void (*_ap_reserved3) (void);
void (*_ap_reserved4) (void);
void (*_ap_reserved5) (void);
void (*_ap_reserved6) (void);
void (*_ap_reserved7) (void);
};
/**
* ApOAuthPlugin:
*
* Use the accessor functions below.
*/
struct _ApOAuthPlugin
{
ApPlugin parent_instance;
/*< private >*/
ApOAuthPluginPrivate *priv;
};
GType ap_oauth_plugin_get_type (void) G_GNUC_CONST;
void ap_oauth_plugin_set_oauth_parameters (ApOAuthPlugin *self,
GHashTable *oauth_params);
void ap_oauth_plugin_set_account_oauth_parameters (ApOAuthPlugin *self,
GHashTable *oauth_params);
/**
* ApOAuthMechanism:
* @AP_OAUTH_MECHANISM_USER_AGENT: OAuth 2.0, user-agent flow (default)
* @AP_OAUTH_MECHANISM_WEB_SERVER: OAuth 2.0, web-server flow
* @AP_OAUTH_MECHANISM_HMAC_SHA1: OAuth 1.0a, signing type: HMAC-SHA1
* @AP_OAUTH_MECHANISM_PLAINTEXT: OAuth 1.0a, signing type: PLAINTEXT
* @AP_OAUTH_MECHANISM_RSA_SHA1: OAuth 1.0a, signing type: RSA-SHA1
*
* The authentication mechanism to be used.
*/
typedef enum {
AP_OAUTH_MECHANISM_USER_AGENT = 0,
AP_OAUTH_MECHANISM_WEB_SERVER,
AP_OAUTH_MECHANISM_HMAC_SHA1,
AP_OAUTH_MECHANISM_PLAINTEXT,
AP_OAUTH_MECHANISM_RSA_SHA1,
/*< private >*/
AP_OAUTH_MECHANISM_LAST
} ApOAuthMechanism;
void ap_oauth_plugin_set_mechanism (ApOAuthPlugin *self,
ApOAuthMechanism mechanism);
G_END_DECLS
#endif /* _AP_OAUTH_PLUGIN_H_ */
|