verify_mode.ml
async_ssl
async_ssl.bindings
1 2 3 4 5 6 7 8 (* https://www.openssl.org/docs/manmaster/ssl/SSL_CTX_set_verify.html *) type t = | Verify_none | Verify_peer | Verify_fail_if_no_peer_cert | Verify_client_once [@@deriving sexp_of]
1 2 3 4 5 6 7 8
(* https://www.openssl.org/docs/manmaster/ssl/SSL_CTX_set_verify.html *) type t = | Verify_none | Verify_peer | Verify_fail_if_no_peer_cert | Verify_client_once [@@deriving sexp_of]