Proper generation of Exim domainlists
[hcoop/domtool2.git] / openssl / openssl_sml.h
1 #include "openssl/bio.h"
2 #include "openssl/ssl.h"
3 #include "openssl/err.h"
4
5 void OpenSSL_SML_init(void);
6 void OpenSSL_SML_load_error_strings(void);
7 void OpenSSL_SML_load_BIO_strings(void);
8
9 int OpenSSL_SML_get_error(void);
10 const char *OpenSSL_SML_lib_error_string(int err);
11 const char *OpenSSL_SML_func_error_string(int err);
12 const char *OpenSSL_SML_reason_error_string(int err);
13
14 int OpenSSL_SML_read(BIO *b, void *data, int len);
15 int OpenSSL_SML_write(BIO *b, const void *data, int len);
16
17 BIO *OpenSSL_SML_new_connect(char *addr);
18 int OpenSSL_SML_do_connect(BIO *b);
19
20 int OpenSSL_SML_do_accept(BIO *b);
21
22 int OpenSSL_SML_do_handshake(BIO *b);
23
24 void OpenSSL_SML_free_all(BIO *b);
25
26 SSL_METHOD *OpenSSL_SML_SSLv23_method(void);
27
28 SSL_CTX *OpenSSL_SML_CTX_new(SSL_METHOD *meth);
29 void OpenSSL_SML_CTX_free(SSL_CTX *ctx);
30
31 int OpenSSL_SML_load_verify_locations(SSL_CTX *ctx, const char *trust, const char *certs);
32
33 BIO *OpenSSL_SML_new_ssl_connect(SSL_CTX *ctx);
34 SSL *OpenSSL_SML_get_ssl(BIO *bio);
35 int OpenSSL_SML_set_conn_hostname(BIO *bio, char *hostname);
36 int OpenSSL_SML_set_accept_port(BIO *bio, char *port);
37
38 int OpenSSL_SML_tcp_listen(int port, int qsize);
39 int OpenSSL_SML_accept(int sock);
40 BIO *OpenSSL_SML_new_socket(int sock);
41
42 SSL *OpenSSL_SML_SSL_new(SSL_CTX *ctx);
43
44 int OpenSSL_SML_SSL_shutdown(SSL *ssl);
45 void OpenSSL_SML_shutdown(int sock);
46 void OpenSSL_SML_SSL_set_bio(SSL *ssl, BIO *b1, BIO *b2);
47
48 int OpenSSL_SML_use_PrivateKey_file(SSL_CTX *ctx, char *keyfile);
49
50 int OpenSSL_SML_SSL_accept(SSL *ssl);
51
52 int OpenSSL_SML_use_certificate_chain_file(SSL_CTX *ctx, char *keyfile);
53
54 const char *OpenSSL_SML_get_peer_name(SSL *ssl);
55
56 BIO *OpenSSL_SML_new_ssl(SSL_CTX *ctx);
57 BIO *OpenSSL_SML_new_accept(SSL_CTX *ctx, char *port);
58
59 BIO *OpenSSL_SML_pop(BIO *b);
60 BIO *OpenSSL_SML_next(BIO *b);
61
62 int OpenSSL_SML_puts(BIO *b, const char *buf);