crypto.h 446 B

1234567891011121314151617181920212223
  1. /**
  2. * crypto.h
  3. * Crypto calls.
  4. *
  5. * Matej Pfajfar <mp292@cam.ac.uk>
  6. */
  7. /*
  8. * Changes :
  9. * $Log$
  10. * Revision 1.1 2002/06/26 22:45:50 arma
  11. * Initial revision
  12. *
  13. * Revision 1.1 2002/04/02 14:28:01 badbytes
  14. * Final finishes.
  15. *
  16. */
  17. #include "../common/onion.h"
  18. int crypt_f(unsigned char *buf, size_t buflen, crypt_path_t **cpath, size_t cpathlen);
  19. int crypt_b(unsigned char *buf, size_t buflen, crypt_path_t **cpath, size_t cpathlen);