aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib/src/vespa/vespalib/util/md5.h
blob: f61aaee19629274c4da0dcb8b7cf6646f025ef44 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#pragma once

#include <stddef.h>

/* Returns pointer to a key in compacted format, ie 16 unsigned chars */

#ifdef __cplusplus
extern "C" {
void fastc_md5sum(const void *s, size_t len, unsigned char *key);
}
#else
void fastc_md5sum(const void *s, size_t len, unsigned char *key);
#endif