wolf_demo.h 408 B

123456789101112131415161718
  1. typedef struct func_args
  2. {
  3. int argc;
  4. char **argv;
  5. int return_code;
  6. } func_args;
  7. void wolfSSL_init(void) ;
  8. void wolfSSL_main(void) ;
  9. WOLFSSL_CTX *wolfSSL_TLS_server_init(void);
  10. WOLFSSL_CTX *wolfSSL_TLS_client_init(void);
  11. void benchmark_test(void *args);
  12. void wolfcrypt_test(void *args);
  13. void wolfSSL_TLS_client(void *ctx, func_args *args);
  14. void wolfSSL_TLS_server(void *ctx, func_args *args);