Iostream_ssl.Config
type t = {
check_certificate : bool;
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