Re-implemented SP800Derive in C++, which is added as the new key derivation function in Android 9.0 May update. From file services/core/java/com/android/server/locksettings/SP800Derive.java in frameworks/base. This is required to get TWRP working on any Android device that has a screen lock set up after the May update. Change-Id: I5c1a51b110033f2b0b75d5e36fd8098c05e95179
118 lines
4.1 KiB
C++
118 lines
4.1 KiB
C++
/*
|
|
* Copyright (C) 2016 Team Win Recovery 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.
|
|
*/
|
|
|
|
/*
|
|
* This computes the "secret" used by Android as one of the parameters
|
|
* to decrypt File Based Encryption. The secret is prefixed with
|
|
* "Android FBE credential hash" padded with 0s to 128 bytes then the
|
|
* user's password is appended to the end of the 128 bytes. This string
|
|
* is then hashed with sha512 and the sha512 value is then converted to
|
|
* hex with upper-case characters.
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <string>
|
|
#include <stdlib.h>
|
|
#include <openssl/sha.h>
|
|
#include <openssl/hmac.h>
|
|
|
|
#include "HashPassword.h"
|
|
|
|
#define PASS_PADDING_SIZE 128
|
|
#define SHA512_HEX_SIZE SHA512_DIGEST_LENGTH * 2
|
|
#define SHA256_HEX_SIZE SHA256_DIGEST_LENGTH * 2
|
|
|
|
void* PersonalizedHashBinary(const char* prefix, const char* key, const size_t key_size) {
|
|
size_t size = PASS_PADDING_SIZE + key_size;
|
|
unsigned char* buffer = (unsigned char*)calloc(1, size);
|
|
if (!buffer) return NULL; // failed to malloc
|
|
memcpy((void*)buffer, (void*)prefix, strlen(prefix));
|
|
unsigned char* ptr = buffer + PASS_PADDING_SIZE;
|
|
memcpy((void*)ptr, key, key_size);
|
|
unsigned char hash[SHA512_DIGEST_LENGTH];
|
|
SHA512_CTX sha512;
|
|
SHA512_Init(&sha512);
|
|
SHA512_Update(&sha512, buffer, size);
|
|
SHA512_Final(hash, &sha512);
|
|
free(buffer);
|
|
void* ret = malloc(SHA512_DIGEST_LENGTH);
|
|
if (!ret) return NULL; // failed to malloc
|
|
memcpy(ret, (void*)&hash[0], SHA512_DIGEST_LENGTH);
|
|
return ret;
|
|
}
|
|
|
|
std::string PersonalizedHash(const char* prefix, const char* key, const size_t key_size) {
|
|
size_t size = PASS_PADDING_SIZE + key_size;
|
|
unsigned char* buffer = (unsigned char*)calloc(1, size);
|
|
if (!buffer) return ""; // failed to malloc
|
|
memcpy((void*)buffer, (void*)prefix, strlen(prefix));
|
|
unsigned char* ptr = buffer + PASS_PADDING_SIZE;
|
|
memcpy((void*)ptr, key, key_size);
|
|
unsigned char hash[SHA512_DIGEST_LENGTH];
|
|
SHA512_CTX sha512;
|
|
SHA512_Init(&sha512);
|
|
SHA512_Update(&sha512, buffer, size);
|
|
SHA512_Final(hash, &sha512);
|
|
int index = 0;
|
|
char hex_hash[SHA512_HEX_SIZE + 1];
|
|
for(index = 0; index < SHA512_DIGEST_LENGTH; index++)
|
|
sprintf(hex_hash + (index * 2), "%02X", hash[index]);
|
|
hex_hash[128] = 0;
|
|
std::string ret = hex_hash;
|
|
free(buffer);
|
|
return ret;
|
|
}
|
|
|
|
std::string PersonalizedHash(const char* prefix, const std::string& Password) {
|
|
return PersonalizedHash(prefix, Password.c_str(), Password.size());
|
|
}
|
|
|
|
std::string PersonalizedHashSP800(const char* label, const char* context, const char* key, const size_t key_size) {
|
|
HMAC_CTX ctx;
|
|
HMAC_CTX_init(&ctx);
|
|
HMAC_Init_ex(&ctx, key, key_size, EVP_sha256(), NULL);
|
|
unsigned int counter = 1;
|
|
endianswap(&counter);
|
|
HMAC_Update(&ctx, (const unsigned char*)&counter, 4);
|
|
HMAC_Update(&ctx, (const unsigned char*)label, strlen(label));
|
|
const unsigned char divider = 0;
|
|
HMAC_Update(&ctx, ÷r, 1);
|
|
HMAC_Update(&ctx, (const unsigned char*)context, strlen(context));
|
|
unsigned int contextDisambiguation = strlen(context) * 8;
|
|
endianswap(&contextDisambiguation);
|
|
HMAC_Update(&ctx, (const unsigned char*)&contextDisambiguation, 4);
|
|
unsigned int finalValue = 256;
|
|
endianswap(&finalValue);
|
|
HMAC_Update(&ctx, (const unsigned char*)&finalValue, 4);
|
|
|
|
unsigned char output[SHA256_DIGEST_LENGTH];
|
|
unsigned int out_size = 0;
|
|
HMAC_Final(&ctx, output, &out_size);
|
|
|
|
int index = 0;
|
|
char hex_hash[SHA256_HEX_SIZE + 1];
|
|
for(index = 0; index < SHA256_DIGEST_LENGTH; index++)
|
|
sprintf(hex_hash + (index * 2), "%02x", output[index]);
|
|
hex_hash[SHA256_HEX_SIZE] = 0;
|
|
std::string ret = hex_hash;
|
|
return ret;
|
|
}
|
|
|
|
std::string HashPassword(const std::string& Password) {
|
|
const char* prefix = FBE_PERSONALIZATION;
|
|
return PersonalizedHash(prefix, Password);
|
|
}
|