bigbiff | 7ba7500 | 2020-04-11 20:47:09 -0400 | [diff] [blame] | 1 | /* |
| 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 | |
| 22 | #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 | #define PERSONALIZATION_USER_GK_AUTH "user-gk-authentication" |
| 28 | #define PERSONALISATION_SECDISCARDABLE "secdiscardable-transform" |
| 29 | #define PERSONALISATION_CONTEXT "android-synthetic-password-personalization-context" |
| 30 | |
| 31 | void* PersonalizedHashBinary(const char* prefix, const char* key, const size_t key_size); |
| 32 | |
| 33 | std::string PersonalizedHash(const char* prefix, const char* key, const size_t key_size); |
| 34 | std::string PersonalizedHash(const char* prefix, const std::string& Password); |
| 35 | std::string PersonalizedHashSP800(const char* label, const char* context, const char* key, const size_t key_size); |
| 36 | std::string HashPassword(const std::string& Password); |
| 37 | |
| 38 | template <class T> |
| 39 | void endianswap(T *objp) { |
| 40 | unsigned char *memp = reinterpret_cast<unsigned char*>(objp); |
| 41 | std::reverse(memp, memp + sizeof(T)); |
| 42 | } |
| 43 | |
| 44 | #endif |