Changeset View
Changeset View
Standalone View
Standalone View
intern/cycles/util/util_md5.h
| Show All 24 Lines | |||||
| * | * | ||||
| * Simply MD5 hash computation, used by disk cache. Adapted from external | * Simply MD5 hash computation, used by disk cache. Adapted from external | ||||
| * code, with minor code modifications done to remove some unused code and | * code, with minor code modifications done to remove some unused code and | ||||
| * change code style. */ | * change code style. */ | ||||
| #ifndef __UTIL_MD5_H__ | #ifndef __UTIL_MD5_H__ | ||||
| #define __UTIL_MD5_H__ | #define __UTIL_MD5_H__ | ||||
| #include "util_string.h" | #include "util/util_string.h" | ||||
| #include "util_types.h" | #include "util/util_types.h" | ||||
| CCL_NAMESPACE_BEGIN | CCL_NAMESPACE_BEGIN | ||||
| class MD5Hash { | class MD5Hash { | ||||
| public: | public: | ||||
| MD5Hash(); | MD5Hash(); | ||||
| ~MD5Hash(); | ~MD5Hash(); | ||||
| Show All 19 Lines | |||||