tortls.h 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. /* Opaque structure to hold a TLS connection. */
  13. typedef struct tor_tls_st tor_tls;
  14. /* Possible return values for most tor_tls_* functions. */
  15. #define TOR_TLS_ERROR -4
  16. #define TOR_TLS_CLOSE -3
  17. #define TOR_TLS_WANTREAD -2
  18. #define TOR_TLS_WANTWRITE -1
  19. #define TOR_TLS_DONE 0
  20. int tor_tls_context_new(crypto_pk_env_t *rsa, int isServer,
  21. const char *nickname, unsigned int key_lifetime);
  22. tor_tls *tor_tls_new(int sock, int is_server, int use_no_cert);
  23. void tor_tls_free(tor_tls *tls);
  24. int tor_tls_peer_has_cert(tor_tls *tls);
  25. int tor_tls_get_peer_cert_nickname(tor_tls *tls, char *buf, size_t buflen);
  26. int tor_tls_verify(tor_tls *tls, crypto_pk_env_t **identity);
  27. int tor_tls_check_lifetime(tor_tls *tls, int tolerance);
  28. int tor_tls_read(tor_tls *tls, char *cp, size_t len);
  29. int tor_tls_write(tor_tls *tls, char *cp, size_t n);
  30. int tor_tls_handshake(tor_tls *tls);
  31. int tor_tls_shutdown(tor_tls *tls);
  32. int tor_tls_get_pending_bytes(tor_tls *tls);
  33. unsigned long tor_tls_get_n_bytes_read(tor_tls *tls);
  34. unsigned long tor_tls_get_n_bytes_written(tor_tls *tls);
  35. /* Log and abort if there are unhandled TLS errors in OpenSSL's error stack.
  36. */
  37. #define assert_no_tls_errors() _assert_no_tls_errors(__FILE__,__LINE__)
  38. void _assert_no_tls_errors(const char *fname, int line);
  39. #endif