globus_connect_gridftp_server  16.4
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 
12 typedef struct dbxhash dbxhash;
13 
14 dbxhash * dbxhash_new(void);
15 void dbxhash_update(dbxhash *, const unsigned char *, size_t);
16 char * dbxhash_finalize(dbxhash *);
17 
18 #endif /* DROPBOXHASH_H */