diff options
Diffstat (limited to 'src/op/crypto.h')
-rw-r--r-- | src/op/crypto.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/op/crypto.h b/src/op/crypto.h new file mode 100644 index 000000000..17c61e669 --- /dev/null +++ b/src/op/crypto.h @@ -0,0 +1,23 @@ +/** + * crypto.h + * Crypto calls. + * + * Matej Pfajfar <mp292@cam.ac.uk> + */ + +/* + * Changes : + * $Log$ + * Revision 1.1 2002/06/26 22:45:50 arma + * Initial revision + * + * Revision 1.1 2002/04/02 14:28:01 badbytes + * Final finishes. + * + */ + +#include "../common/onion.h" + +int crypt_f(unsigned char *buf, size_t buflen, crypt_path_t **cpath, size_t cpathlen); + +int crypt_b(unsigned char *buf, size_t buflen, crypt_path_t **cpath, size_t cpathlen); |