2 * Copyright (C) 2012 Tobias Brunner
3 * Hochschule fuer Technik Rapperswil
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; either version 2 of the License, or (at your
8 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 * @defgroup android_creds android_creds
18 * @{ @ingroup android_backend
21 #ifndef ANDROID_CREDS_H_
22 #define ANDROID_CREDS_H_
25 #include <credentials/credential_set.h>
27 typedef struct android_creds_t android_creds_t
;
30 * Android credential set that provides CA certificates via JNI and supplied
33 struct android_creds_t
{
36 * Implements credential_set_t
41 * Add user name and password for EAP authentication
43 * @param username user name
44 * @param password password
46 void (*add_username_password
)(android_creds_t
*this, char *username
,
50 * Clear the cached certificates and stored credentials.
52 void (*clear
)(android_creds_t
*this);
55 * Destroy a android_creds instance.
57 void (*destroy
)(android_creds_t
*this);
62 * Create an android_creds instance.
64 android_creds_t
*android_creds_create();
66 #endif /** ANDROID_CREDS_H_ @}*/