globus_connect_gridftp_server 16.16~rc1
Loading...
Searching...
No Matches
quickxorhash.h
1#ifndef QUICKXORHASH_H
2#define QUICKXORHASH_H
3
4#include <stdint.h>
5
6typedef struct qxhash qxhash;
7
8qxhash *qxh_new(void);
9void qxh_update(qxhash *, const uint8_t *, size_t);
10char * qxh_finalize(qxhash *);
11void qxh_free(qxhash *);
12
13#endif /* QUICKXORHASH_H */