File: mssl.h

package info (click to toggle)
httping 1.5.8-1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 188 kB
  • ctags: 79
  • sloc: ansic: 1,695; makefile: 76
file content (8 lines) | stat: -rw-r--r-- 397 bytes parent folder | download
1
2
3
4
5
6
7
8
/* Released under GPLv2 with exception for the OpenSSL library. See license.txt */

char close_ssl_connection(SSL *ssl_h, int socket_h);
int READ_SSL(SSL *ssl_h, char *whereto, int len);
int WRITE_SSL(SSL *ssl_h, char *whereto, int len);
int connect_ssl(int socket_h, SSL_CTX *client_ctx, SSL **ssl_h, BIO **s_bio, int timeout);
SSL_CTX * initialize_ctx(void);
char * get_fingerprint(SSL *ssl_h);