1 /*
2  * gnome-keyring
3  *
4  * Copyright (C) 2011 Collabora Ltd.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU Lesser General Public License as
8  * published by the Free Software Foundation; either version 2.1 of
9  * the License, or (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful, but
12  * WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this program; if not, see
18  * <http://www.gnu.org/licenses/>.
19  *
20  * Author: Stef Walter <stefw@collabora.co.uk>
21  */
22 
23 #ifndef EGG_HKDF_H_
24 #define EGG_HKDF_H_
25 
26 #include <glib.h>
27 
28 gboolean   egg_hkdf_perform                                   (const gchar *hash_algo,
29                                                                gconstpointer input,
30                                                                gsize n_input,
31                                                                gconstpointer salt,
32                                                                gsize n_salt,
33                                                                gconstpointer info,
34                                                                gsize n_info,
35                                                                gpointer output,
36                                                                gsize n_output);
37 
38 #endif /* EGG_HKDF_H_ */
39