• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright 2019 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_MD5_NACL_H_
6 #define BASE_HASH_MD5_NACL_H_
7 
8 #include <stdint.h>
9 
10 #include <array>
11 
12 namespace base {
13 
14 // The output of an MD5 operation.
15 struct MD5Digest {
16   std::array<uint8_t, 16> a;
17 };
18 
19 // Used for storing intermediate data during an MD5 computation. Callers
20 // should not access the data.
21 typedef char MD5Context[88];
22 
23 }  // namespace base
24 
25 #endif  // BASE_HASH_MD5_NACL_H_
26