• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #ifndef DYNAMIC_DEPTH_INCLUDES_XMPMETA_MD5_H_  // NOLINT
2 #define DYNAMIC_DEPTH_INCLUDES_XMPMETA_MD5_H_  // NOLINT
3 
4 #include <string>
5 
6 #include "base/port.h"
7 
8 namespace dynamic_depth {
9 namespace xmpmeta {
10 
11 // Returns the MD5 hash of to_hash as a 32-character hex string.
12 // Wrapper around OpenSSL to avoid Gyp dependency problems.
13 string MD5Hash(const string& to_hash);
14 
15 }  // namespace xmpmeta
16 }  // namespace dynamic_depth
17 
18 #endif // DYNAMIC_DEPTH_INCLUDES_XMPMETA_MD5_H_  // NOLINT
19