s_apps.h 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. /*
  2. * Copyright 1995-2021 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. #include <openssl/srp.h>
  12. #define PORT "4433"
  13. #define PROTOCOL "tcp"
  14. typedef int (*do_server_cb)(int s, int stype, int prot, unsigned char *context);
  15. int report_server_accept(BIO *out, int asock, int with_address, int with_pid);
  16. int do_server(int *accept_sock, const char *host, const char *port,
  17. int family, int type, int protocol, do_server_cb cb,
  18. unsigned char *context, int naccept, BIO *bio_s_out);
  19. int verify_callback(int ok, X509_STORE_CTX *ctx);
  20. int set_cert_stuff(SSL_CTX *ctx, char *cert_file, char *key_file);
  21. int set_cert_key_stuff(SSL_CTX *ctx, X509 *cert, EVP_PKEY *key,
  22. STACK_OF(X509) *chain, int build_chain);
  23. int ssl_print_sigalgs(BIO *out, SSL *s);
  24. int ssl_print_point_formats(BIO *out, SSL *s);
  25. int ssl_print_groups(BIO *out, SSL *s, int noshared);
  26. int ssl_print_tmp_key(BIO *out, SSL *s);
  27. int init_client(int *sock, const char *host, const char *port,
  28. const char *bindhost, const char *bindport,
  29. int family, int type, int protocol);
  30. int should_retry(int i);
  31. void do_ssl_shutdown(SSL *ssl);
  32. long bio_dump_callback(BIO *bio, int cmd, const char *argp, size_t len,
  33. int argi, long argl, int ret, size_t *processed);
  34. void apps_ssl_info_callback(const SSL *s, int where, int ret);
  35. void msg_cb(int write_p, int version, int content_type, const void *buf,
  36. size_t len, SSL *ssl, void *arg);
  37. void tlsext_cb(SSL *s, int client_server, int type, const unsigned char *data,
  38. int len, void *arg);
  39. int generate_cookie_callback(SSL *ssl, unsigned char *cookie,
  40. unsigned int *cookie_len);
  41. int verify_cookie_callback(SSL *ssl, const unsigned char *cookie,
  42. unsigned int cookie_len);
  43. #ifdef __VMS /* 31 char symbol name limit */
  44. # define generate_stateless_cookie_callback generate_stateless_cookie_cb
  45. # define verify_stateless_cookie_callback verify_stateless_cookie_cb
  46. #endif
  47. int generate_stateless_cookie_callback(SSL *ssl, unsigned char *cookie,
  48. size_t *cookie_len);
  49. int verify_stateless_cookie_callback(SSL *ssl, const unsigned char *cookie,
  50. size_t cookie_len);
  51. typedef struct ssl_excert_st SSL_EXCERT;
  52. void ssl_ctx_set_excert(SSL_CTX *ctx, SSL_EXCERT *exc);
  53. void ssl_excert_free(SSL_EXCERT *exc);
  54. int args_excert(int option, SSL_EXCERT **pexc);
  55. int load_excert(SSL_EXCERT **pexc);
  56. void print_verify_detail(SSL *s, BIO *bio);
  57. void print_ssl_summary(SSL *s);
  58. int config_ctx(SSL_CONF_CTX *cctx, STACK_OF(OPENSSL_STRING) *str, SSL_CTX *ctx);
  59. int ssl_ctx_add_crls(SSL_CTX *ctx, STACK_OF(X509_CRL) *crls,
  60. int crl_download);
  61. int ssl_load_stores(SSL_CTX *ctx, const char *vfyCApath,
  62. const char *vfyCAfile, const char *vfyCAstore,
  63. const char *chCApath, const char *chCAfile,
  64. const char *chCAstore, STACK_OF(X509_CRL) *crls,
  65. int crl_download);
  66. void ssl_ctx_security_debug(SSL_CTX *ctx, int verbose);
  67. int set_keylog_file(SSL_CTX *ctx, const char *keylog_file);
  68. void print_ca_names(BIO *bio, SSL *s);
  69. #ifndef OPENSSL_NO_SRP
  70. /* The client side SRP context that we pass to all SRP related callbacks */
  71. typedef struct srp_arg_st {
  72. char *srppassin;
  73. char *srplogin;
  74. int msg; /* copy from c_msg */
  75. int debug; /* copy from c_debug */
  76. int amp; /* allow more groups */
  77. int strength; /* minimal size for N */
  78. } SRP_ARG;
  79. int set_up_srp_arg(SSL_CTX *ctx, SRP_ARG *srp_arg, int srp_lateuser, int c_msg,
  80. int c_debug);
  81. void set_up_dummy_srp(SSL_CTX *ctx);
  82. /* The server side SRP context that we pass to all SRP related callbacks */
  83. typedef struct srpsrvparm_st {
  84. char *login;
  85. SRP_VBASE *vb;
  86. SRP_user_pwd *user;
  87. } srpsrvparm;
  88. int set_up_srp_verifier_file(SSL_CTX *ctx, srpsrvparm *srp_callback_parm,
  89. char *srpuserseed, char *srp_verifier_file);
  90. void lookup_srp_user(srpsrvparm *srp_callback_parm, BIO *bio_s_out);
  91. #endif /* OPENSSL_NO_SRP */