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 namespace base { 11 12 // The output of an MD5 operation. 13 struct MD5Digest { 14 uint8_t a[16]; 15 }; 16 17 // Used for storing intermediate data during an MD5 computation. Callers 18 // should not access the data. 19 typedef char MD5Context[88]; 20 21 } // namespace base 22 23 #endif // BASE_HASH_MD5_NACL_H_ 24