blob: 7e9d604fb340c18f977b207d6b3d14ac7e296aa4 [file] [log] [blame]
// Copyright (c) 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "base/hash/sha1.h"
#include <stdint.h>
#include "base/strings/string_util.h"
#include "third_party/boringssl/src/include/openssl/crypto.h"
#include "third_party/boringssl/src/include/openssl/sha.h"
namespace base {
std::array<uint8_t, kSHA1Length> SHA1HashSpan(span<const uint8_t> data) {
CRYPTO_library_init();
std::array<uint8_t, kSHA1Length> digest;
SHA1(data.data(), data.size(), digest.data());
return digest;
}
std::string SHA1HashString(const std::string& str) {
CRYPTO_library_init();
std::string digest;
SHA1(reinterpret_cast<const uint8_t*>(str.data()), str.size(),
reinterpret_cast<uint8_t*>(WriteInto(&digest, kSHA1Length + 1)));
return digest;
}
void SHA1HashBytes(const unsigned char* data, size_t len, unsigned char* hash) {
CRYPTO_library_init();
SHA1(data, len, hash);
}
} // namespace base