]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - contrib/wpa/src/utils/ext_password_i.h
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / contrib / wpa / src / utils / ext_password_i.h
1 /*
2  * External password backend - internal definitions
3  * Copyright (c) 2012, Jouni Malinen <j@w1.fi>
4  *
5  * This software may be distributed under the terms of the BSD license.
6  * See README for more details.
7  */
8
9 #ifndef EXT_PASSWORD_I_H
10 #define EXT_PASSWORD_I_H
11
12 #include "ext_password.h"
13
14 struct ext_password_backend {
15         const char *name;
16         void * (*init)(const char *params);
17         void (*deinit)(void *ctx);
18         struct wpabuf * (*get)(void *ctx, const char *name);
19 };
20
21 struct wpabuf * ext_password_alloc(size_t len);
22
23 #endif /* EXT_PASSWORD_I_H */