blob: 7857f94feac3bcbb92de49223a750b0217fc8a78 [file] [log] [blame]
Oscar Montemayor05231562009-11-30 08:40:57 -08001/*
2 * Copyright (C) 2009 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include <stdio.h>
18
19#ifndef __EFS_MIGRATION_H__
20#define __EFS_MIGRATION_H__
21
22#define MODE_ENCRYPTEDFS_DISABLED 0
23#define MODE_ENCRYPTEDFS_ENABLED 1
24
25#define EFS_OK 0
26#define EFS_ERROR (-1)
27
28struct encrypted_fs_info {
29 int encrypted_fs_mode;
30 char *encrypted_fs_key;
31};
32
33typedef struct encrypted_fs_info encrypted_fs_info;
34
35int read_encrypted_fs_info(encrypted_fs_info *efs_data);
36
37int restore_encrypted_fs_info(encrypted_fs_info *efs_data);
38
39#endif /* __EFS_MIGRATION_H__ */
40