aboutsummaryrefslogtreecommitdiff
path: root/common/md5.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'common/md5.cpp')
-rw-r--r--common/md5.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/common/md5.cpp b/common/md5.cpp
index 39ef1f3e13..1962f8cb94 100644
--- a/common/md5.cpp
+++ b/common/md5.cpp
@@ -233,6 +233,10 @@ void md5_finish(md5_context *ctx, uint8 digest[16]) {
PUT_UINT32(ctx->state[3], digest, 12);
}
+bool md5_file(const FilesystemNode &file, uint8 digest[16], uint32 length) {
+ return md5_file(file.path().c_str(), digest, length);
+}
+
bool md5_file(const char *name, uint8 digest[16], uint32 length) {
File f;