X509 *x509;intnewCAStore = FALSE;if(!ctx->ca_store) { ctx->ca_store = X509_STORE_new(); newCAStore = TRUE; } x509 = _lua_load_x509(L,2);if(!x509) { lua_pushboolean(L,0);return1; }X509_STORE_add_cert(ctx->ca_store, x509); SSL_CTX_add_client_CA(ctx->ctx, x509); X5...