tortls.h 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /* Copyright 2003 Roger Dingledine */
  2. /* See LICENSE for licensing information */
  3. /* $Id$ */
  4. #ifndef _TORTLS_H
  5. #define _TORTLS_H
  6. #define TORTLS_H_ID "$Id$"
  7. /**
  8. * \file tortls.h
  9. * \brief Headers for tortls.c
  10. **/
  11. #include "../common/crypto.h"
  12. #include "../common/compat.h"
  13. /* Opaque structure to hold a TLS connection. */
  14. typedef struct tor_tls_st tor_tls;
  15. /* Possible return values for most tor_tls_* functions. */
  16. #define TOR_TLS_ERROR -4
  17. #define TOR_TLS_CLOSE -3
  18. #define TOR_TLS_WANTREAD -2
  19. #define TOR_TLS_WANTWRITE -1
  20. #define TOR_TLS_DONE 0
  21. int tor_tls_context_new(crypto_pk_env_t *rsa, int isServer,
  22. const char *nickname, unsigned int key_lifetime);
  23. tor_tls *tor_tls_new(int sock, int is_server, int use_no_cert);
  24. void tor_tls_free(tor_tls *tls);
  25. int tor_tls_peer_has_cert(tor_tls *tls);
  26. int tor_tls_get_peer_cert_nickname(tor_tls *tls, char *buf, size_t buflen);
  27. int tor_tls_verify(tor_tls *tls, crypto_pk_env_t **identity);
  28. int tor_tls_check_lifetime(tor_tls *tls, int tolerance);
  29. int tor_tls_read(tor_tls *tls, char *cp, size_t len);
  30. int tor_tls_write(tor_tls *tls, char *cp, size_t n);
  31. int tor_tls_handshake(tor_tls *tls);
  32. int tor_tls_shutdown(tor_tls *tls);
  33. int tor_tls_get_pending_bytes(tor_tls *tls);
  34. unsigned long tor_tls_get_n_bytes_read(tor_tls *tls);
  35. unsigned long tor_tls_get_n_bytes_written(tor_tls *tls);
  36. /* Log and abort if there are unhandled TLS errors in OpenSSL's error stack.
  37. */
  38. #define assert_no_tls_errors() _assert_no_tls_errors(_SHORT_FILE_,__LINE__)
  39. void _assert_no_tls_errors(const char *fname, int line);
  40. #endif