s_apps.h 3.3 KB
Newer Older
R
Rich Salz 已提交
1
/*
M
Matt Caswell 已提交
2
 * Copyright 1995-2018 The OpenSSL Project Authors. All Rights Reserved.
3
 *
R
Rich Salz 已提交
4 5 6 7
 * Licensed under the OpenSSL license (the "License").  You may not use
 * this file except in compliance with the License.  You can obtain a copy
 * in the file LICENSE in the source distribution or at
 * https://www.openssl.org/source/license.html
8
 */
R
Rich Salz 已提交
9

10 11
#include <openssl/opensslconf.h>

12
#if defined(OPENSSL_SYS_WINDOWS) || defined(OPENSSL_SYS_MSDOS)
13
# include <conio.h>
14 15
#endif

16
#if defined(OPENSSL_SYS_MSDOS) && !defined(_WIN32)
17
# define _kbhit kbhit
18 19
#endif

20
#define PORT            "4433"
21 22
#define PROTOCOL        "tcp"

M
Matt Caswell 已提交
23
typedef int (*do_server_cb)(int s, int stype, int prot, unsigned char *context);
24
int do_server(int *accept_sock, const char *host, const char *port,
M
Matt Caswell 已提交
25
              int family, int type, int protocol,
26 27
              do_server_cb cb,
              unsigned char *context, int naccept);
28
#ifdef HEADER_X509_H
R
Rich Salz 已提交
29
int verify_callback(int ok, X509_STORE_CTX *ctx);
30 31 32
#endif
#ifdef HEADER_SSL_H
int set_cert_stuff(SSL_CTX *ctx, char *cert_file, char *key_file);
33
int set_cert_key_stuff(SSL_CTX *ctx, X509 *cert, EVP_PKEY *key,
34
                       STACK_OF(X509) *chain, int build_chain);
35
int ssl_print_sigalgs(BIO *out, SSL *s);
36
int ssl_print_point_formats(BIO *out, SSL *s);
37
int ssl_print_groups(BIO *out, SSL *s, int noshared);
38
#endif
39
int ssl_print_tmp_key(BIO *out, SSL *s);
40
int init_client(int *sock, const char *host, const char *port,
41
                const char *bindhost, const char *bindport,
M
Matt Caswell 已提交
42
                int family, int type, int protocol);
43 44
int should_retry(int i);

R
Rich Salz 已提交
45
long bio_dump_callback(BIO *bio, int cmd, const char *argp,
46
                       int argi, long argl, long ret);
47 48

#ifdef HEADER_SSL_H
R
Rich Salz 已提交
49
void apps_ssl_info_callback(const SSL *s, int where, int ret);
50 51
void msg_cb(int write_p, int version, int content_type, const void *buf,
            size_t len, SSL *ssl, void *arg);
E
Emilia Kasper 已提交
52
void tlsext_cb(SSL *s, int client_server, int type, const unsigned char *data,
53
               int len, void *arg);
54
#endif
D
Dr. Stephen Henson 已提交
55

56 57
int generate_cookie_callback(SSL *ssl, unsigned char *cookie,
                             unsigned int *cookie_len);
E
Emilia Kasper 已提交
58
int verify_cookie_callback(SSL *ssl, const unsigned char *cookie,
59
                           unsigned int cookie_len);
60

61 62 63 64 65
int generate_stateless_cookie_callback(SSL *ssl, unsigned char *cookie,
                                       size_t *cookie_len);
int verify_stateless_cookie_callback(SSL *ssl, const unsigned char *cookie,
                                     size_t cookie_len);

66 67 68 69
typedef struct ssl_excert_st SSL_EXCERT;

void ssl_ctx_set_excert(SSL_CTX *ctx, SSL_EXCERT *exc);
void ssl_excert_free(SSL_EXCERT *exc);
70 71
int args_excert(int option, SSL_EXCERT **pexc);
int load_excert(SSL_EXCERT **pexc);
72
void print_verify_detail(SSL *s, BIO *bio);
R
Rich Salz 已提交
73
void print_ssl_summary(SSL *s);
74
#ifdef HEADER_SSL_H
R
Rich Salz 已提交
75
int config_ctx(SSL_CONF_CTX *cctx, STACK_OF(OPENSSL_STRING) *str, SSL_CTX *ctx);
76 77 78 79 80 81
int ssl_ctx_add_crls(SSL_CTX *ctx, STACK_OF(X509_CRL) *crls,
                     int crl_download);
int ssl_load_stores(SSL_CTX *ctx, const char *vfyCApath,
                    const char *vfyCAfile, const char *chCApath,
                    const char *chCAfile, STACK_OF(X509_CRL) *crls,
                    int crl_download);
R
Rich Salz 已提交
82
void ssl_ctx_security_debug(SSL_CTX *ctx, int verbose);
83
int set_keylog_file(SSL_CTX *ctx, const char *keylog_file);
84
void print_ca_names(BIO *bio, SSL *s);
85
#endif