1 // Copyright 2021 The Chromium Authors 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 #ifndef BASE_HASH_SHA1_BORINGSSL_H_ 6 #define BASE_HASH_SHA1_BORINGSSL_H_ 7 8 #include <stdint.h> 9 10 #include "third_party/boringssl/src/include/openssl/sha.h" 11 12 namespace base { 13 // Used for storing intermediate data during an SHA1 computation. Callers 14 // should not access the data. 15 using SHA1Context = SHA_CTX; 16 } // namespace base 17 18 #endif // BASE_HASH_SHA1_BORINGSSL_H_ 19