s_apps.h 3.8 KB
Newer Older
R
Rich Salz 已提交
1 2
/*
 * Copyright 1995-2016 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
#if defined(OPENSSL_SYS_VMS) && !defined(FD_SET)
21 22 23 24 25 26
/*
 * VAX C does not defined fd_set and friends, but it's actually quite simple
 */
/* These definitions are borrowed from SOCKETSHR.       /Richard Levitte */
# define MAX_NOFILE      32
# define NBBY             8     /* number of bits in a byte */
U
Ulf Möller 已提交
27

28 29 30
# ifndef FD_SETSIZE
#  define FD_SETSIZE      MAX_NOFILE
# endif                         /* FD_SETSIZE */
U
Ulf Möller 已提交
31 32

/* How many things we'll allow select to use. 0 if unlimited */
33 34 35 36
# define MAXSELFD        MAX_NOFILE
typedef int fd_mask;            /* int here! VMS prototypes int, not long */
# define NFDBITS (sizeof(fd_mask) * NBBY)/* bits per mask (power of 2!) */
# define NFDSHIFT 5             /* Shift based on above */
U
Ulf Möller 已提交
37 38

typedef fd_mask fd_set;
39 40 41
# define FD_SET(n, p)    (*(p) |= (1 << ((n) % NFDBITS)))
# define FD_CLR(n, p)    (*(p) &= ~(1 << ((n) % NFDBITS)))
# define FD_ISSET(n, p)  (*(p) & (1 << ((n) % NFDBITS)))
42
# define FD_ZERO(p)      memset((p), 0, sizeof(*(p)))
U
Ulf Möller 已提交
43 44
#endif

45
#define PORT            "4433"
46 47
#define PROTOCOL        "tcp"

48
typedef int (*do_server_cb)(int s, int stype, unsigned char *context);
49 50
int do_server(int *accept_sock, const char *host, const char *port,
              int family, int type,
51 52
              do_server_cb cb,
              unsigned char *context, int naccept);
53
#ifdef HEADER_X509_H
R
Rich Salz 已提交
54
int verify_callback(int ok, X509_STORE_CTX *ctx);
55 56 57
#endif
#ifdef HEADER_SSL_H
int set_cert_stuff(SSL_CTX *ctx, char *cert_file, char *key_file);
58
int set_cert_key_stuff(SSL_CTX *ctx, X509 *cert, EVP_PKEY *key,
59
                       STACK_OF(X509) *chain, int build_chain);
60
int ssl_print_sigalgs(BIO *out, SSL *s);
61
int ssl_print_point_formats(BIO *out, SSL *s);
62
int ssl_print_curves(BIO *out, SSL *s, int noshared);
63
#endif
64
int ssl_print_tmp_key(BIO *out, SSL *s);
65 66
int init_client(int *sock, const char *host, const char *port,
                int family, int type);
67 68
int should_retry(int i);

R
Rich Salz 已提交
69
long bio_dump_callback(BIO *bio, int cmd, const char *argp,
70
                       int argi, long argl, long ret);
71 72

#ifdef HEADER_SSL_H
R
Rich Salz 已提交
73
void apps_ssl_info_callback(const SSL *s, int where, int ret);
74 75
void msg_cb(int write_p, int version, int content_type, const void *buf,
            size_t len, SSL *ssl, void *arg);
E
Emilia Kasper 已提交
76
void tlsext_cb(SSL *s, int client_server, int type, const unsigned char *data,
77
               int len, void *arg);
78
#endif
D
Dr. Stephen Henson 已提交
79

80 81
int generate_cookie_callback(SSL *ssl, unsigned char *cookie,
                             unsigned int *cookie_len);
E
Emilia Kasper 已提交
82
int verify_cookie_callback(SSL *ssl, const unsigned char *cookie,
83
                           unsigned int cookie_len);
84 85 86 87 88

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);
89 90
int args_excert(int option, SSL_EXCERT **pexc);
int load_excert(SSL_EXCERT **pexc);
91
void print_verify_detail(SSL *s, BIO *bio);
R
Rich Salz 已提交
92
void print_ssl_summary(SSL *s);
93
#ifdef HEADER_SSL_H
R
Rich Salz 已提交
94
int config_ctx(SSL_CONF_CTX *cctx, STACK_OF(OPENSSL_STRING) *str, SSL_CTX *ctx);
95 96 97 98 99 100
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 已提交
101
void ssl_ctx_security_debug(SSL_CTX *ctx, int verbose);
102
#endif