Simple OpenSSL stuff in SML/NJ
[hcoop/domtool2.git] / openssl / openssl_sml.h
CommitLineData
559e89e9
AC
1#include "openssl/bio.h"
2#include "openssl/ssl.h"
3#include "openssl/err.h"
4
5void OpenSSL_SML_add_all_algorithms(void);
6void OpenSSL_SML_load_error_strings(void);
7void OpenSSL_SML_load_BIO_strings(void);
8int OpenSSL_SML_get_error(void);
9const char *OpenSSL_SML_lib_error_string(int err);
10const char *OpenSSL_SML_func_error_string(int err);
11const char *OpenSSL_SML_reason_error_string(int err);
12int OpenSSL_SML_write(BIO *b, const void *data, int len);
13BIO *OpenSSL_SML_new_connect(char *addr);
14void OpenSSL_SML_free_all(BIO *b);
15int OpenSSL_SML_do_connect(BIO *b);