s_apps.h 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. /*
  2. * Copyright 1995-2018 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. #include <openssl/opensslconf.h>
  10. #if defined(OPENSSL_SYS_WINDOWS) || defined(OPENSSL_SYS_MSDOS)
  11. # include <conio.h>
  12. #endif
  13. #if defined(OPENSSL_SYS_MSDOS) && !defined(_WIN32)
  14. # define _kbhit kbhit
  15. #endif
  16. #define PORT "4433"
  17. #define PROTOCOL "tcp"
  18. typedef int (*do_server_cb)(int s, int stype, int prot, unsigned char *context);
  19. int do_server(int *accept_sock, const char *host, const char *port,
  20. int family, int type, int protocol,
  21. do_server_cb cb,
  22. unsigned char *context, int naccept);
  23. #ifdef HEADER_X509_H
  24. int verify_callback(int ok, X509_STORE_CTX *ctx);
  25. #endif
  26. #ifdef HEADER_SSL_H
  27. int set_cert_stuff(SSL_CTX *ctx, char *cert_file, char *key_file);
  28. int set_cert_key_stuff(SSL_CTX *ctx, X509 *cert, EVP_PKEY *key,
  29. STACK_OF(X509) *chain, int build_chain);
  30. int ssl_print_sigalgs(BIO *out, SSL *s);
  31. int ssl_print_point_formats(BIO *out, SSL *s);
  32. int ssl_print_groups(BIO *out, SSL *s, int noshared);
  33. #endif
  34. int ssl_print_tmp_key(BIO *out, SSL *s);
  35. int init_client(int *sock, const char *host, const char *port,
  36. const char *bindhost, const char *bindport,
  37. int family, int type, int protocol);
  38. int should_retry(int i);
  39. long bio_dump_callback(BIO *bio, int cmd, const char *argp,
  40. int argi, long argl, long ret);
  41. #ifdef HEADER_SSL_H
  42. void apps_ssl_info_callback(const SSL *s, int where, int ret);
  43. void msg_cb(int write_p, int version, int content_type, const void *buf,
  44. size_t len, SSL *ssl, void *arg);
  45. void tlsext_cb(SSL *s, int client_server, int type, const unsigned char *data,
  46. int len, void *arg);
  47. #endif
  48. int generate_cookie_callback(SSL *ssl, unsigned char *cookie,
  49. unsigned int *cookie_len);
  50. int verify_cookie_callback(SSL *ssl, const unsigned char *cookie,
  51. unsigned int cookie_len);
  52. #ifdef __VMS /* 31 char symbol name limit */
  53. # define generate_stateless_cookie_callback generate_stateless_cookie_cb
  54. # define verify_stateless_cookie_callback verify_stateless_cookie_cb
  55. #endif
  56. int generate_stateless_cookie_callback(SSL *ssl, unsigned char *cookie,
  57. size_t *cookie_len);
  58. int verify_stateless_cookie_callback(SSL *ssl, const unsigned char *cookie,
  59. size_t cookie_len);
  60. typedef struct ssl_excert_st SSL_EXCERT;
  61. void ssl_ctx_set_excert(SSL_CTX *ctx, SSL_EXCERT *exc);
  62. void ssl_excert_free(SSL_EXCERT *exc);
  63. int args_excert(int option, SSL_EXCERT **pexc);
  64. int load_excert(SSL_EXCERT **pexc);
  65. void print_verify_detail(SSL *s, BIO *bio);
  66. void print_ssl_summary(SSL *s);
  67. #ifdef HEADER_SSL_H
  68. int config_ctx(SSL_CONF_CTX *cctx, STACK_OF(OPENSSL_STRING) *str, SSL_CTX *ctx);
  69. int ssl_ctx_add_crls(SSL_CTX *ctx, STACK_OF(X509_CRL) *crls,
  70. int crl_download);
  71. int ssl_load_stores(SSL_CTX *ctx, const char *vfyCApath,
  72. const char *vfyCAfile, const char *chCApath,
  73. const char *chCAfile, STACK_OF(X509_CRL) *crls,
  74. int crl_download);
  75. void ssl_ctx_security_debug(SSL_CTX *ctx, int verbose);
  76. int set_keylog_file(SSL_CTX *ctx, const char *keylog_file);
  77. void print_ca_names(BIO *bio, SSL *s);
  78. #endif