mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-12-06 19:41:15 +01:00
9a928eeb12
svn:r2
24 lines
446 B
C
24 lines
446 B
C
/**
|
|
* 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);
|