1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- #ifndef BASE_HASH_MD5_CONSTEXPR_H_
- #define BASE_HASH_MD5_CONSTEXPR_H_
- #include "base/hash/md5.h"
- #include "base/hash/md5_constexpr_internal.h"
- namespace base {
- constexpr MD5Digest MD5SumConstexpr(const char* string);
- constexpr MD5Digest MD5SumConstexpr(const char* data, uint32_t length);
- constexpr uint64_t MD5Hash64Constexpr(const char* string);
- constexpr uint64_t MD5Hash64Constexpr(const char* data, uint32_t length);
- constexpr uint32_t MD5Hash32Constexpr(const char* string);
- constexpr uint32_t MD5Hash32Constexpr(const char* data, uint32_t length);
- }
- #endif
|