source: EcnlProtoTool/trunk/openssl-1.1.0e/apps/s_apps.h@ 331

Last change on this file since 331 was 331, checked in by coas-nagasima, 6 years ago

prototoolに関連するプロジェクトをnewlibからmuslを使うよう変更・更新
ntshellをnewlibの下位の実装から、muslのsyscallの実装に変更・更新
以下のOSSをアップデート
・mruby-1.3.0
・musl-1.1.18
・onigmo-6.1.3
・tcc-0.9.27
以下のOSSを追加
・openssl-1.1.0e
・curl-7.57.0
・zlib-1.2.11
以下のmrbgemsを追加
・iij/mruby-digest
・iij/mruby-env
・iij/mruby-errno
・iij/mruby-iijson
・iij/mruby-ipaddr
・iij/mruby-mock
・iij/mruby-require
・iij/mruby-tls-openssl

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-chdr
File size: 3.8 KB
Line 
1/*
2 * Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
3 *
4 * Licensed under the OpenSSL license (the "License"). You may not use
5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
7 * https://www.openssl.org/source/license.html
8 */
9
10#include <openssl/opensslconf.h>
11
12#if defined(OPENSSL_SYS_WINDOWS) || defined(OPENSSL_SYS_MSDOS)
13# include <conio.h>
14#endif
15
16#if defined(OPENSSL_SYS_MSDOS) && !defined(_WIN32)
17# define _kbhit kbhit
18#endif
19
20#if defined(OPENSSL_SYS_VMS) && !defined(FD_SET)
21/*
22 * VAX C does not defined fd_set and friends, but it's actually quite simple
23 */
24/* These definitions are borrowed from SOCKETSHR. /Richard Levitte */
25# define MAX_NOFILE 32
26# define NBBY 8 /* number of bits in a byte */
27
28# ifndef FD_SETSIZE
29# define FD_SETSIZE MAX_NOFILE
30# endif /* FD_SETSIZE */
31
32/* How many things we'll allow select to use. 0 if unlimited */
33# define MAXSELFD MAX_NOFILE
34typedef int fd_mask; /* int here! VMS prototypes int, not long */
35# define NFDBITS (sizeof(fd_mask) * NBBY)/* bits per mask (power of 2!) */
36# define NFDSHIFT 5 /* Shift based on above */
37
38typedef fd_mask fd_set;
39# define FD_SET(n, p) (*(p) |= (1 << ((n) % NFDBITS)))
40# define FD_CLR(n, p) (*(p) &= ~(1 << ((n) % NFDBITS)))
41# define FD_ISSET(n, p) (*(p) & (1 << ((n) % NFDBITS)))
42# define FD_ZERO(p) memset((p), 0, sizeof(*(p)))
43#endif
44
45#define PORT "4433"
46#define PROTOCOL "tcp"
47
48typedef int (*do_server_cb)(int s, int stype, unsigned char *context);
49int do_server(int *accept_sock, const char *host, const char *port,
50 int family, int type,
51 do_server_cb cb,
52 unsigned char *context, int naccept);
53#ifdef HEADER_X509_H
54int verify_callback(int ok, X509_STORE_CTX *ctx);
55#endif
56#ifdef HEADER_SSL_H
57int set_cert_stuff(SSL_CTX *ctx, char *cert_file, char *key_file);
58int set_cert_key_stuff(SSL_CTX *ctx, X509 *cert, EVP_PKEY *key,
59 STACK_OF(X509) *chain, int build_chain);
60int ssl_print_sigalgs(BIO *out, SSL *s);
61int ssl_print_point_formats(BIO *out, SSL *s);
62int ssl_print_curves(BIO *out, SSL *s, int noshared);
63#endif
64int ssl_print_tmp_key(BIO *out, SSL *s);
65int init_client(int *sock, const char *host, const char *port,
66 int family, int type);
67int should_retry(int i);
68
69long bio_dump_callback(BIO *bio, int cmd, const char *argp,
70 int argi, long argl, long ret);
71
72#ifdef HEADER_SSL_H
73void apps_ssl_info_callback(const SSL *s, int where, int ret);
74void msg_cb(int write_p, int version, int content_type, const void *buf,
75 size_t len, SSL *ssl, void *arg);
76void tlsext_cb(SSL *s, int client_server, int type, const unsigned char *data,
77 int len, void *arg);
78#endif
79
80int generate_cookie_callback(SSL *ssl, unsigned char *cookie,
81 unsigned int *cookie_len);
82int verify_cookie_callback(SSL *ssl, const unsigned char *cookie,
83 unsigned int cookie_len);
84
85typedef struct ssl_excert_st SSL_EXCERT;
86
87void ssl_ctx_set_excert(SSL_CTX *ctx, SSL_EXCERT *exc);
88void ssl_excert_free(SSL_EXCERT *exc);
89int args_excert(int option, SSL_EXCERT **pexc);
90int load_excert(SSL_EXCERT **pexc);
91void print_verify_detail(SSL *s, BIO *bio);
92void print_ssl_summary(SSL *s);
93#ifdef HEADER_SSL_H
94int config_ctx(SSL_CONF_CTX *cctx, STACK_OF(OPENSSL_STRING) *str, SSL_CTX *ctx);
95int ssl_ctx_add_crls(SSL_CTX *ctx, STACK_OF(X509_CRL) *crls,
96 int crl_download);
97int ssl_load_stores(SSL_CTX *ctx, const char *vfyCApath,
98 const char *vfyCAfile, const char *chCApath,
99 const char *chCAfile, STACK_OF(X509_CRL) *crls,
100 int crl_download);
101void ssl_ctx_security_debug(SSL_CTX *ctx, int verbose);
102#endif
Note: See TracBrowser for help on using the repository browser.