globus_connect_gridftp_server 16.16~rc1
Loading...
Searching...
No Matches
dropbox.h
1/*
2 * Copyright The University of Chicago
3 *
4 * All Rights Reserved.
5 */
6
7#ifndef DROPBOXHASH_H
8#define DROPBOXHASH_H
9
10#include <stdint.h>
11
12typedef struct dbxhash dbxhash;
13
14dbxhash * dbxhash_new(void);
15void dbxhash_update(dbxhash *, const unsigned char *, size_t);
16char * dbxhash_finalize(dbxhash *);
17
18#endif /* DROPBOXHASH_H */