s_apps.h 3.4 KB

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