forked from commoncriteria/tls-cc-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathssl.h
50 lines (32 loc) · 1.44 KB
/
ssl.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#ifndef __SSL_H
#define __SSL_H
#include <openssl/ssl.h>
#define RECV_WAIT_ERROR -1
#define RECV_TIMEOUT -2
#define HANDSHAKE_UNSUCCESSFUL 0
#define HANDSHAKE_SUCCESSFUL 1
#define HANDSHAKE_BAD_DIGEST 2 /* successful except bad final digest */
#if OPENSSL_VERSION_NUMBER < 0x10100000L
#define TLS_method TLSv1_2_method
#endif
typedef unsigned char *(*MUTATOR) (void *, unsigned char *, int, int *);
void init_ssl();
SSL *init_ssl_with_cipher(SSL_CTX *ssl_ctx, const char *cipher_name);
SSL_CTX *init_ssl_server_ctx(const SSL_METHOD *method, X509 *server_cert,
EVP_PKEY *server_priv_key, const char *dh_params, const char *ecdh_curve,
X509 *ecdsa_cert, EVP_PKEY *ecdsa_privkey, X509 *root_cert);
int Custom_SSL_CTX_build_cert_chain(SSL_CTX *ssl_ctx, X509 **certs,
int count);
void print_ssl_error_stack(int level);
int send_bio_data(int sockfd, BIO *wbio, MUTATOR mutate, void *state);
int put_bio_data(int sockfd, BIO *rbio, MUTATOR mutate, void *state);
int recv_wait(int sockfd, BIO *rbio, long sec, long us, MUTATOR mutate,
void *state);
int do_handshake(int sockfd, SSL *ssl, BIO *rbio, BIO *wbio,
MUTATOR in_mut, void *in_state, MUTATOR out_mut, void *out_state);
void shutdown_ssl(SSL *ssl, int sockfd, BIO *rbio, BIO *wbio);
int get_ssl_record(SSL *ssl, int sockfd, BIO *rbio, unsigned char *buf,
unsigned int len);
int send_ssl_record(SSL *ssl, int sockfd, BIO *wbio, unsigned char *buf,
unsigned int len);
#endif