Version 1.4.2.
[platform/upstream/cryptsetup.git] / lib / loopaes / loopaes.h
1 /*
2  * loop-AES compatible volume handling
3  *
4  * Copyright (C) 2011-2012, Red Hat, Inc. All rights reserved.
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License
8  * version 2 as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18  */
19
20 #ifndef _LOOPAES_H
21 #define _LOOPAES_H
22
23 #include <unistd.h>
24 #include "config.h"
25
26 struct crypt_device;
27 struct volume_key;
28
29 #define LOOPAES_KEYS_MAX 65
30
31 int LOOPAES_parse_keyfile(struct crypt_device *cd,
32                           struct volume_key **vk,
33                           const char *hash,
34                           unsigned int *keys_count,
35                           char *buffer,
36                           size_t buffer_len);
37
38 int LOOPAES_activate(struct crypt_device *cd,
39                      const char *name,
40                      const char *base_cipher,
41                      unsigned int keys_count,
42                      struct volume_key *vk,
43                      uint32_t flags);
44 #endif