Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2014-11-14 13:53:27 +0300
committerCampbell Barton <ideasman42@gmail.com>2014-11-14 13:53:27 +0300
commit60ffc08547476781f9b3f61c344af13fbad13ec5 (patch)
treeffa5962b9753106d67050cf8d18a3f4314a4928f /source/blender/blenlib/BLI_hash_md5.h
parent14795baf2142024905c6936a82eaa2321dae8cb8 (diff)
Cleanup: use BLI_hash_ prefix for md5 api
Diffstat (limited to 'source/blender/blenlib/BLI_hash_md5.h')
-rw-r--r--source/blender/blenlib/BLI_hash_md5.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/blenlib/BLI_hash_md5.h b/source/blender/blenlib/BLI_hash_md5.h
index 81a0eb9e828..544ae753793 100644
--- a/source/blender/blenlib/BLI_hash_md5.h
+++ b/source/blender/blenlib/BLI_hash_md5.h
@@ -30,14 +30,14 @@
* output yields to the wanted ASCII representation of the message
* digest. */
-void *md5_buffer(const char *buffer, size_t len, void *resblock);
+void *BLI_hash_md5_buffer(const char *buffer, size_t len, void *resblock);
/* Compute MD5 message digest for bytes read from STREAM. The
* resulting message digest number will be written into the 16 bytes
* beginning at RESBLOCK. */
-int md5_stream(FILE *stream, void *resblock);
+int BLI_hash_md5_stream(FILE *stream, void *resblock);
-char *md5_to_hexdigest(void *resblock, char r_hex_digest[33]);
+char *BLI_hash_md5_to_hexdigest(void *resblock, char r_hex_digest[33]);
#endif /* __BLI_HASH_MD5_H__ */