19 lines
510 B
C++
19 lines
510 B
C++
// Copyright 2021 The Chromium Authors
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#ifndef BASE_HASH_SHA1_BORINGSSL_H_
|
|
#define BASE_HASH_SHA1_BORINGSSL_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
#include "third_party/boringssl/src/include/openssl/sha.h"
|
|
|
|
namespace base {
|
|
// Used for storing intermediate data during an SHA1 computation. Callers
|
|
// should not access the data.
|
|
using SHA1Context = SHA_CTX;
|
|
} // namespace base
|
|
|
|
#endif // BASE_HASH_SHA1_BORINGSSL_H_
|