1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18

base / hash / sha1_boringssl.h [blame]

// 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_