• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-13-stable/contrib/wpa/src/crypto/

Lines Matching refs:tls_ctx

224  * Returns: Context data to be used as tls_ctx in calls to other functions,
237 * @tls_ctx: TLS context data from tls_init()
245 void tls_deinit(void *tls_ctx);
249 * @tls_ctx: TLS context data from tls_init()
254 int tls_get_errors(void *tls_ctx);
258 * @tls_ctx: TLS context data from tls_init()
261 struct tls_connection * tls_connection_init(void *tls_ctx);
265 * @tls_ctx: TLS context data from tls_init()
270 void tls_connection_deinit(void *tls_ctx, struct tls_connection *conn);
274 * @tls_ctx: TLS context data from tls_init()
278 int tls_connection_established(void *tls_ctx, struct tls_connection *conn);
282 * @tls_ctx: TLS context data from tls_init()
289 char * tls_connection_peer_serial_num(void *tls_ctx,
294 * @tls_ctx: TLS context data from tls_init()
303 int tls_connection_shutdown(void *tls_ctx, struct tls_connection *conn);
313 * @tls_ctx: TLS context data from tls_init()
325 tls_connection_set_params(void *tls_ctx, struct tls_connection *conn,
330 * @tls_ctx: TLS context data from tls_init()
341 void *tls_ctx, const struct tls_connection_params *params);
345 * @tls_ctx: TLS context data from tls_init()
351 int __must_check tls_global_set_verify(void *tls_ctx, int check_crl,
356 * @tls_ctx: TLS context data from tls_init()
364 int __must_check tls_connection_set_verify(void *tls_ctx,
373 * @tls_ctx: TLS context data from tls_init()
378 int __must_check tls_connection_get_random(void *tls_ctx,
384 * @tls_ctx: TLS context data from tls_init()
397 int __must_check tls_connection_export_key(void *tls_ctx,
406 * @tls_ctx: TLS context data from tls_init()
416 int __must_check tls_connection_get_eap_fast_key(void *tls_ctx,
422 * @tls_ctx: TLS context data from tls_init()
447 struct wpabuf * tls_connection_handshake(void *tls_ctx,
452 struct wpabuf * tls_connection_handshake2(void *tls_ctx,
460 * @tls_ctx: TLS context data from tls_init()
468 struct wpabuf * tls_connection_server_handshake(void *tls_ctx,
475 * @tls_ctx: TLS context data from tls_init()
484 struct wpabuf * tls_connection_encrypt(void *tls_ctx,
490 * @tls_ctx: TLS context data from tls_init()
499 struct wpabuf * tls_connection_decrypt(void *tls_ctx,
503 struct wpabuf * tls_connection_decrypt2(void *tls_ctx,
510 * @tls_ctx: TLS context data from tls_init()
514 int tls_connection_resumed(void *tls_ctx, struct tls_connection *conn);
528 * @tls_ctx: TLS context data from tls_init()
534 int __must_check tls_connection_set_cipher_list(void *tls_ctx,
540 * @tls_ctx: TLS context data from tls_init()
548 int __must_check tls_get_version(void *tls_ctx, struct tls_connection *conn,
553 * @tls_ctx: TLS context data from tls_init()
561 int __must_check tls_get_cipher(void *tls_ctx, struct tls_connection *conn,
566 * @tls_ctx: TLS context data from tls_init()
573 int __must_check tls_connection_enable_workaround(void *tls_ctx,
578 * @tls_ctx: TLS context data from tls_init()
585 int __must_check tls_connection_client_hello_ext(void *tls_ctx,
592 * @tls_ctx: TLS context data from tls_init()
597 int tls_connection_get_failed(void *tls_ctx, struct tls_connection *conn);
601 * @tls_ctx: TLS context data from tls_init()
606 int tls_connection_get_read_alerts(void *tls_ctx, struct tls_connection *conn);
610 * @tls_ctx: TLS context data from tls_init()
615 int tls_connection_get_write_alerts(void *tls_ctx,
623 void *tls_ctx, struct tls_connection *conn,