Module Iostream_ssl.Config

type t = {
  1. check_certificate : bool;
  2. proto : Ssl.protocol;
}
val make : ?check_certificate:bool -> ?proto:Ssl.protocol -> unit -> t
val default : t

Default config: no certificate validation, TLS 1.3.

val show : t -> string