2003-09-04 18:05:08 +02:00
|
|
|
/* Copyright 2003 Roger Dingledine */
|
|
|
|
/* See LICENSE for licensing information */
|
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
#ifndef _TORTLS_H
|
|
|
|
#define _TORTLS_H
|
|
|
|
|
|
|
|
#include "../common/crypto.h"
|
|
|
|
|
|
|
|
typedef struct tor_tls_context_st tor_tls_context;
|
|
|
|
typedef struct tor_tls_st tor_tls;
|
|
|
|
|
|
|
|
#define TOR_TLS_ERROR -4
|
|
|
|
#define TOR_TLS_CLOSE -3
|
|
|
|
#define TOR_TLS_WANTREAD -2
|
|
|
|
#define TOR_TLS_WANTWRITE -1
|
|
|
|
#define TOR_TLS_DONE 0
|
|
|
|
|
|
|
|
int tor_tls_write_certificate(char *certfile, crypto_pk_env_t *rsa, char *nickname);
|
2003-09-08 08:22:19 +02:00
|
|
|
int tor_tls_context_new(char *certfile, crypto_pk_env_t *rsa, int isServer);
|
|
|
|
tor_tls *tor_tls_new(int sock, int isServer);
|
2003-09-04 18:05:08 +02:00
|
|
|
void tor_tls_free(tor_tls *tls);
|
|
|
|
int tor_tls_read(tor_tls *tls, char *cp, int len);
|
|
|
|
int tor_tls_write(tor_tls *tls, char *cp, int n);
|
|
|
|
int tor_tls_handshake(tor_tls *tls);
|
|
|
|
/* XXXX we need a function to check for validated, verified peer certs. */
|
2003-09-08 12:46:19 +02:00
|
|
|
/* XXXX i would also very much like a function to tell me who i just
|
|
|
|
* handshaked with. maybe a nickname, and from there i can look
|
|
|
|
* up a router entry? and maybe one day a function to make sure the cert
|
|
|
|
* doesn't disagree too much with the router entry.
|
|
|
|
*/
|
2003-09-04 18:05:08 +02:00
|
|
|
int tor_tls_shutdown(tor_tls *tls);
|
|
|
|
|
|
|
|
#endif
|