2015-11-09 02:56:23 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2015 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2016-02-09 10:50:32 +01:00
|
|
|
#include <stdbool.h>
|
2015-04-29 00:14:15 +02:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
|
2015-11-09 02:56:23 +01:00
|
|
|
#include <cutils/multiuser.h>
|
|
|
|
|
2015-04-29 00:14:15 +02:00
|
|
|
__BEGIN_DECLS
|
|
|
|
|
|
|
|
// General functions
|
2016-02-09 10:50:32 +01:00
|
|
|
bool e4crypt_is_native();
|
2016-02-09 11:04:39 +01:00
|
|
|
bool e4crypt_initialize_global_de();
|
2015-11-09 02:56:23 +01:00
|
|
|
|
2016-02-09 11:04:39 +01:00
|
|
|
bool e4crypt_init_user0();
|
|
|
|
bool e4crypt_vold_create_user_key(userid_t user_id, int serial, bool ephemeral);
|
|
|
|
bool e4crypt_destroy_user_key(userid_t user_id);
|
2016-03-09 18:31:37 +01:00
|
|
|
bool e4crypt_change_user_key(userid_t user_id, int serial, const char* token,
|
|
|
|
const char* old_secret, const char* new_secret);
|
2015-11-09 02:56:23 +01:00
|
|
|
|
2016-03-09 18:31:37 +01:00
|
|
|
bool e4crypt_unlock_user_key(userid_t user_id, int serial, const char* token, const char* secret);
|
2016-02-09 11:04:39 +01:00
|
|
|
bool e4crypt_lock_user_key(userid_t user_id);
|
2015-11-09 02:56:23 +01:00
|
|
|
|
2016-03-09 18:31:37 +01:00
|
|
|
bool e4crypt_prepare_user_storage(const char* volume_uuid, userid_t user_id, int serial, int flags);
|
2015-04-29 00:14:15 +02:00
|
|
|
|
|
|
|
__END_DECLS
|