e0781d0536
refactor to use size_t
28 lines
980 B
C
28 lines
980 B
C
#ifndef MH_HULTIHASH_H
|
|
#define MH_HULTIHASH_H
|
|
|
|
#include <stddef.h>
|
|
|
|
// returns hash code or error (which is < 0)
|
|
int mh_multihash_hash(const unsigned char *multihash, size_t len);
|
|
|
|
// returns length of multihash or error (which is < 0)
|
|
int mh_multihash_length(const unsigned char *multihash, size_t len);
|
|
|
|
// gives access to raw digset inside multihash buffer
|
|
// returns 0 or negative error
|
|
int mh_multihash_digset(const unsigned char *multihash, size_t len,
|
|
const unsigned char **digset, size_t *digset_len);
|
|
|
|
// returns length in bytes of buffer needed to store multihash
|
|
// with given hashcode and with given digset length
|
|
// returns length or negative error code
|
|
int mh_new_length(int code, size_t digset_len);
|
|
|
|
// writes multihash into a buffer, the buffer needs to be at least
|
|
// mh_new_length() bytes long.
|
|
// returns negative error code or 0
|
|
int mh_new(unsigned char *buffer, int code, const unsigned char *digset,
|
|
size_t digset_len);
|
|
|
|
#endif /* end of include guard */
|