/* * Copyright (c) 2022 Huawei Device Co., Ltd. * 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. */ #include "utils/crypto.h" #include #include "openssl/sha.h" namespace OHOS { namespace DistributedData { std::string Crypto::Sha256(const std::string &text, bool isUpper) { return Sha256(text.data(), text.size(), isUpper); } std::vector Crypto::Random(int32_t len, int32_t minimum, int32_t maximum) { std::random_device randomDevice; std::uniform_int_distribution distribution(minimum, maximum); std::vector key(len); for (int32_t i = 0; i < len; i++) { key[i] = static_cast(distribution(randomDevice)); } return key; } std::string Crypto::Sha256(const void *data, size_t size, bool isUpper) { unsigned char hash[SHA256_DIGEST_LENGTH * 2 + 1] = ""; SHA256_CTX ctx; SHA256_Init(&ctx); SHA256_Update(&ctx, data, size); SHA256_Final(&hash[SHA256_DIGEST_LENGTH], &ctx); // here we translate sha256 hash to hexadecimal. each 8-bit char will be presented by two characters([0-9a-f]) constexpr int WIDTH = 4; constexpr unsigned char MASK = 0x0F; const char* hexCode = isUpper ? "0123456789ABCDEF" : "0123456789abcdef"; for (int32_t i = 0; i < SHA256_DIGEST_LENGTH; ++i) { unsigned char value = hash[SHA256_DIGEST_LENGTH + i]; // uint8_t is 2 digits in hexadecimal. hash[i * 2] = hexCode[(value >> WIDTH) & MASK]; // uint8_t is 2 digits in hexadecimal. hash[i * 2 + 1] = hexCode[value & MASK]; } // uint8_t is 2 digits in hexadecimal. hash[SHA256_DIGEST_LENGTH * 2] = 0; return reinterpret_cast(hash); } } // namespace DistributedData } // namespace OHOS