blob: 8abd0de71ab053c6c39638f02309886bdad16540 [file] [log] [blame]
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001/*
2 * Copyright (C) 2016 Team Win Recovery 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#ifndef __HASH_PASSWORD_H
18#define __HASH_PASSWORD_H
19
20#include <string>
21
Ethan Yonkerfefe5912017-09-30 22:22:13 -050022#define FBE_PERSONALIZATION "Android FBE credential hash"
23#define PERSONALISATION_WEAVER_KEY "weaver-key"
24#define PERSONALISATION_WEAVER_PASSWORD "weaver-pwd"
25#define PERSONALISATION_APPLICATION_ID "application-id"
26#define PERSONALIZATION_FBE_KEY "fbe-key"
27
28void* PersonalizedHashBinary(const char* prefix, const char* key, const size_t key_size);
29
30std::string PersonalizedHash(const char* prefix, const char* key, const size_t key_size);
31std::string PersonalizedHash(const char* prefix, const std::string& Password);
Ethan Yonkerbd7492d2016-12-07 13:55:01 -060032std::string HashPassword(const std::string& Password);
33
34#endif