Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Page
Library
Module
Module type
Parameter
Class
Class type
Source
config.ml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608
open Core let src = Logs.Src.create "tls.config" ~doc:"TLS config" module Log = (val Logs.src_log src : Logs.LOG) type certchain = X509.Certificate.t list * X509.Private_key.t type own_cert = [ | `None | `Single of certchain | `Multiple of certchain list | `Multiple_default of certchain * certchain list ] let pp_cert ppf cs = let from, until = X509.Certificate.validity cs in Fmt.pf ppf "subject %a@ issuer %a@ valid from %a until %a" X509.Distinguished_name.pp (X509.Certificate.subject cs) X509.Distinguished_name.pp (X509.Certificate.issuer cs) (Ptime.pp_human ~tz_offset_s:0 ()) from (Ptime.pp_human ~tz_offset_s:0 ()) until let pp_certchain ppf (chain, _) = Fmt.(list ~sep:(any "@.") pp_cert) ppf chain let pp_own_cert ppf = function | `None -> Fmt.string ppf "NONE" | `Single chain -> pp_certchain ppf chain | `Multiple cs -> Fmt.pf ppf "multiple: %a" Fmt.(list ~sep:(any "@.@.") pp_certchain) cs | `Multiple_default (c, cs) -> Fmt.pf ppf "multiple default:@.%a@.others:@.%a" pp_certchain c Fmt.(list ~sep:(any "@.@.") pp_certchain) cs type session_cache = SessionID.t -> epoch_data option type ticket_cache = { lookup : Cstruct.t -> (psk13 * epoch_data) option ; ticket_granted : psk13 -> epoch_data -> unit ; lifetime : int32 ; timestamp : unit -> Ptime.t } (* TODO: min_rsa, min_dh *) type config = { ciphers : Ciphersuite.ciphersuite list ; protocol_versions : tls_version * tls_version ; signature_algorithms : signature_algorithm list ; use_reneg : bool ; authenticator : X509.Authenticator.t option ; peer_name : [`host] Domain_name.t option ; own_certificates : own_cert ; acceptable_cas : X509.Distinguished_name.t list ; session_cache : session_cache ; ticket_cache : ticket_cache option ; cached_session : epoch_data option ; cached_ticket : (psk13 * epoch_data) option ; alpn_protocols : string list ; groups : group list ; zero_rtt : int32 ; ip : Ipaddr.t option ; } let pp_config ppf cfg = Fmt.pf ppf "ciphers: %a@. \ minimal protocol version: %a@. \ maximum protocol version: %a@. \ signature algorithms: %a@. \ renegotiation enabled %B@. \ peer name: %a@. \ own certificate: %a@. \ acceptable CAs: %a@. \ alpn protocols: %a@. \ groups: %a@. \ IP: %a@." Fmt.(list ~sep:(any ", ") Ciphersuite.pp_ciphersuite) cfg.ciphers pp_tls_version (fst cfg.protocol_versions) pp_tls_version (snd cfg.protocol_versions) Fmt.(list ~sep:(any ", ") pp_signature_algorithm) cfg.signature_algorithms cfg.use_reneg Fmt.(option ~none:(any "none provided") Domain_name.pp) cfg.peer_name pp_own_cert cfg.own_certificates Fmt.(list ~sep:(any ", ") X509.Distinguished_name.pp) cfg.acceptable_cas Fmt.(list ~sep:(any ", ") string) cfg.alpn_protocols Fmt.(list ~sep:(any ", ") pp_group) cfg.groups Fmt.(option ~none:(any "none provided") Ipaddr.pp) cfg.ip let ciphers13 cfg = List.rev (List.fold_left (fun acc cs -> match Ciphersuite.ciphersuite_to_ciphersuite13 cs with | None -> acc | Some c -> c :: acc) [] cfg.ciphers) module Ciphers = struct (* A good place for various pre-baked cipher lists and helper functions to * slice and groom those lists. *) let default13 = [ `AES_128_GCM_SHA256 ; `AES_256_GCM_SHA384 ; `CHACHA20_POLY1305_SHA256 ; `AES_128_CCM_SHA256 ; ] let default = default13 @ [ `DHE_RSA_WITH_AES_256_GCM_SHA384 ; `DHE_RSA_WITH_AES_128_GCM_SHA256 ; `DHE_RSA_WITH_AES_256_CCM ; `DHE_RSA_WITH_AES_128_CCM ; `DHE_RSA_WITH_CHACHA20_POLY1305_SHA256 ; `ECDHE_RSA_WITH_AES_128_GCM_SHA256 ; `ECDHE_RSA_WITH_AES_256_GCM_SHA384 ; `ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256 ; `ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 ; `ECDHE_ECDSA_WITH_AES_256_GCM_SHA384 ; `ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256 ; ] let supported = default @ [ `DHE_RSA_WITH_AES_256_CBC_SHA256 ; `DHE_RSA_WITH_AES_128_CBC_SHA256 ; `DHE_RSA_WITH_AES_256_CBC_SHA ; `DHE_RSA_WITH_AES_128_CBC_SHA ; `ECDHE_RSA_WITH_AES_256_CBC_SHA384 ; `ECDHE_RSA_WITH_AES_128_CBC_SHA256 ; `ECDHE_RSA_WITH_AES_256_CBC_SHA ; `ECDHE_RSA_WITH_AES_128_CBC_SHA ; `ECDHE_ECDSA_WITH_AES_128_CBC_SHA ; `ECDHE_ECDSA_WITH_AES_256_CBC_SHA ; `ECDHE_ECDSA_WITH_AES_128_CBC_SHA256 ; `ECDHE_ECDSA_WITH_AES_256_CBC_SHA384 ; `RSA_WITH_AES_256_CBC_SHA256 ; `RSA_WITH_AES_128_CBC_SHA256 ; `RSA_WITH_AES_256_CBC_SHA ; `RSA_WITH_AES_128_CBC_SHA ; `RSA_WITH_AES_256_GCM_SHA384 ; `RSA_WITH_AES_128_GCM_SHA256 ; `RSA_WITH_AES_256_CCM ; `RSA_WITH_AES_128_CCM ; `DHE_RSA_WITH_3DES_EDE_CBC_SHA ; `RSA_WITH_3DES_EDE_CBC_SHA ; `ECDHE_ECDSA_WITH_3DES_EDE_CBC_SHA ; ] (* as defined in https://httpwg.org/specs/rfc7540.html#BadCipherSuites *) let http2 = default13 @ [ `DHE_RSA_WITH_AES_256_GCM_SHA384 ; `DHE_RSA_WITH_AES_128_GCM_SHA256 ; `DHE_RSA_WITH_AES_256_CCM ; `DHE_RSA_WITH_AES_128_CCM ; `DHE_RSA_WITH_CHACHA20_POLY1305_SHA256 ; `ECDHE_RSA_WITH_AES_128_GCM_SHA256 ; `ECDHE_RSA_WITH_AES_256_GCM_SHA384 ; `ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256 ; `ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 ; `ECDHE_ECDSA_WITH_AES_256_GCM_SHA384 ; `ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256 ; ] let fs_of = List.filter Ciphersuite.ciphersuite_fs let fs = fs_of default end let default_signature_algorithms = [ `ECDSA_SECP256R1_SHA256 ; `ECDSA_SECP384R1_SHA384 ; `ECDSA_SECP521R1_SHA512 ; `ED25519 ; `RSA_PSS_RSAENC_SHA256 ; `RSA_PSS_RSAENC_SHA384 ; `RSA_PSS_RSAENC_SHA512 ; `RSA_PKCS1_SHA256 ; `RSA_PKCS1_SHA384 ; `RSA_PKCS1_SHA512 ; ] let supported_signature_algorithms = default_signature_algorithms @ [ `RSA_PKCS1_SHA224 ; `ECDSA_SECP256R1_SHA1 ; `RSA_PKCS1_SHA1 ; `RSA_PKCS1_MD5 ] let min_dh_size = 1024 let min_rsa_key_size = 1024 let supported_groups = [ `X25519 ; `P384 ; `P256 ; `P521 ; `FFDHE2048 ; `FFDHE3072 ; `FFDHE4096 ; `FFDHE6144 ; `FFDHE8192 ] let elliptic_curve = function | `X25519 | `P256 | `P384 | `P521 -> true | `FFDHE2048 | `FFDHE3072 | `FFDHE4096 | `FFDHE6144 | `FFDHE8192 -> false let default_config = { ciphers = Ciphers.default ; protocol_versions = (`TLS_1_2, `TLS_1_3) ; signature_algorithms = default_signature_algorithms ; use_reneg = false ; authenticator = None ; peer_name = None ; own_certificates = `None ; acceptable_cas = [] ; session_cache = (fun _ -> None) ; cached_session = None ; cached_ticket = None ; alpn_protocols = [] ; groups = supported_groups ; ticket_cache = None ; zero_rtt = 0l ; ip = None ; } (* There are inter-configuration option constraints that are checked and adjusted here. The overall approach is if the client explicitly provided values, these are taken as granted (a conflict will result in an error). If the defaults are used, they are adjusted depending on the others. The options in question are: - ciphers, which before 1.3 include the key exchange (FFDHE, ECDHE, RSA) - groups, which name the FFDHE and ECDHE groups used for DH - signature_algorithms, which (since 1.2) specify the key type and algorithm used for signatures (RSA-PKCS, RSA-PSS, ECDSA/EdDSA) - certificate chains, which influence ciphers (before 1.3) and signature_algorithms Using everywhere the default (but a custom certificate / or multiple) result in a working configuration (where, depending on the certificate key type, some signature_algorithms and ciphersuites are removed). The provided server certificate may remove ciphers & signature_algorithms, but will only result in failure if these will then be empty. An invalid configuration is for example: only FFDHE ciphersuites, but no FFDHE groups. Or only EC signature algorithms, but only ciphers where the key type is RSA. At session initiation time, the server implementation selects cipher, certificate, signature_algorithm, and group depending on its configuration and client request. *) let invalid msg = invalid_arg ("Tls.Config: invalid configuration: " ^ msg) let ciphers_and_groups ?ciphers ?groups default_ciphers = let tls13 = function #Ciphersuite.ciphersuite13 -> true | _ -> false in match ciphers, groups with | None, None -> default_ciphers, supported_groups | Some cs, None -> cs, let has_kex x = function | #Ciphersuite.ciphersuite13 -> true | c -> x = Ciphersuite.ciphersuite_kex c in begin match List.exists (has_kex `ECDHE) cs, List.exists (has_kex `FFDHE) cs with | true, true -> supported_groups | true, false -> Log.warn (fun m -> m "removed FFDHE groups (no FFDHE ciphersuite) from configuation"); List.filter elliptic_curve supported_groups | false, true -> Log.warn (fun m -> m "removed ECDHE groups (no ECDHE ciphersuite) from configuration"); List.filter (fun g -> not (elliptic_curve g)) supported_groups | false, false -> [] end | None, Some g -> begin match List.partition elliptic_curve g with | [], [] -> Log.warn (fun m -> m "removed DHE and ECDHE ciphersuites (empty groups provided) from configuration"); List.filter (fun c -> not (Ciphersuite.ciphersuite_fs c)) default_ciphers | _::_, [] -> Log.warn (fun m -> m "removed DHE ciphersuites (no FFDHE groups provided) from configuration"); List.filter (fun c -> not (Ciphersuite.dhe_only c)) default_ciphers | [], _ :: _ -> Log.warn (fun m -> m "removed ECDHE ciphersuites (no EC groups provided) from configuration"); List.filter (fun c -> not (Ciphersuite.ecdhe_only c)) default_ciphers | _ -> default_ciphers end, g | Some cs, Some g -> if List.exists Ciphersuite.ecdhe_only cs && not (List.exists elliptic_curve g) then invalid "ciphersuite with ECDHE provided, but no EC group"; if List.exists Ciphersuite.dhe_only cs && not (List.exists (fun g -> not (elliptic_curve g)) g) then invalid "ciphersuite with FFDHE provided, but no FF group"; if List.exists Ciphersuite.ciphersuite_fs cs && g = [] then invalid "ciphersuite with forward security provided, but no group"; if List.exists elliptic_curve g && not (List.exists Ciphersuite.ecdhe cs) then invalid "EC group provided, but no ciphersuite with ECDHE"; if List.exists (fun g -> not (elliptic_curve g)) g && not (List.exists (fun c -> Ciphersuite.dhe_only c || tls13 c) cs) then invalid "FF group provided, but no ciphersuite with DHE"; cs, g let ciphers_and_sig_alg ?ciphers ?signature_algorithms default_ciphers = let tls13 = function #Ciphersuite.ciphersuite13 -> true | _ -> false in let default_sa_from_ciphers c = let has_key k c = tls13 c || k = Ciphersuite.ciphersuite_keytype c in match List.exists (has_key `RSA) c, List.exists (has_key `EC) c with | true, true -> supported_signature_algorithms | true, false -> Log.warn (fun m -> m "removed EC signature algorithms (no EC ciphersuite present)"); List.filter rsa_sigalg supported_signature_algorithms | false, true -> Log.warn (fun m -> m "removed RSA signature algorithms (no RSA ciphersuite present)"); List.filter (fun sa -> not (rsa_sigalg sa)) supported_signature_algorithms | false, false -> invalid "ciphersuite list without RSA and EC keys" in match ciphers, signature_algorithms with | None, None -> default_ciphers, default_sa_from_ciphers default_ciphers | Some c, None -> c, default_sa_from_ciphers c | None, Some sa -> begin match List.partition rsa_sigalg sa with | [], [] -> invalid "empty signature algorithms provided" | _::_, [] -> Log.warn (fun m -> m "removing EC ciphers (no EC signature algorithm provided)"); List.filter (fun c -> tls13 c || not (Ciphersuite.ciphersuite_keytype c = `EC)) default_ciphers, sa | [], _::_ -> Log.warn (fun m -> m "removing RSA ciphers (no RSA signature algorithm provided)"); List.filter (fun c -> tls13 c || not (Ciphersuite.ciphersuite_keytype c = `RSA)) default_ciphers, sa | _::_, _::_ -> default_ciphers, sa end | Some c, Some sa -> if List.exists rsa_sigalg sa && not (List.exists (fun c -> Ciphersuite.ciphersuite_keytype c = `RSA) c) then invalid "RSA signature algorithm, but no ciphersuites with RSA keys"; if List.exists (fun s -> not (rsa_sigalg s)) sa && not (List.exists (fun c -> Ciphersuite.ciphersuite_keytype c = `EC) c) then invalid "EC signature algorithm, but no ciphersuites with EC keys"; if List.exists (fun c -> Ciphersuite.ciphersuite_keytype c = `RSA) c && not (List.exists rsa_sigalg sa) then invalid "RSA ciphersuite, but no RSA signature algorithm"; if List.exists (fun c -> Ciphersuite.ciphersuite_keytype c = `EC) c && not (List.exists (fun s -> not (rsa_sigalg s)) sa) then invalid "EC ciphersuite, but no EC signature algorithm"; c, sa let validate_common config = let (v_min, v_max) = config.protocol_versions in if v_max < v_min then invalid "bad version range" ; let ciphers, signature_algorithms = match v_min, v_max with | _, `TLS_1_1 | _, `TLS_1_0 -> Log.warn (fun m -> m "TLS 1.0 or TLS 1.1 as maximum version configured, removing 1.2 and 1.3 ciphersuites"); List.filter (fun c -> not (Ciphersuite.ciphersuite_tls12_only c || Ciphersuite.ciphersuite_tls13 c)) config.ciphers, [] | _, `TLS_1_2 -> if config.signature_algorithms = [] then invalid "TLS 1.2 configured but no signature algorithms provided" else begin Log.warn (fun m -> m "TLS 1.2 as maximum version configured, removing 1.3 cipher suites"); List.filter (fun c -> not (Ciphersuite.ciphersuite_tls13 c)) config.ciphers, config.signature_algorithms end | `TLS_1_3, `TLS_1_3 -> let sa = List.filter tls13_sigalg config.signature_algorithms in if sa = [] then invalid "TLS 1.3 configured but no 1.3 signature algorithms provided" else begin Log.warn (fun m -> m "only TLS 1.3 configured, removing pre-1.3 cipher suites and signature algorithms"); List.filter Ciphersuite.ciphersuite_tls13 config.ciphers, sa end | _ -> config.ciphers, config.signature_algorithms in if not (Utils.List_set.is_proper_set ciphers) then invalid "set of ciphers is not a proper set" ; if List.length ciphers = 0 then invalid "set of ciphers is empty" ; if not (Utils.List_set.is_proper_set config.groups) then invalid "set of groups is not a proper set" ; if not (Utils.List_set.is_proper_set signature_algorithms) then invalid "set of signature algorithms is not a proper set" ; if List.exists (fun proto -> let len = String.length proto in len = 0 || len > 255) config.alpn_protocols then invalid "invalid alpn protocol" ; if List.length config.alpn_protocols > 0xffff then invalid "alpn protocols list too large" ; { config with ciphers ; signature_algorithms } let validate_certificate_chain = function | (s::chain, priv) -> let pub = X509.Private_key.public priv in ( match pub with | `RSA pub -> if Mirage_crypto_pk.Rsa.pub_bits pub < min_rsa_key_size then invalid "RSA key too short!" | _ -> () ); ( let eq_pub a b = Cstruct.equal (X509.Public_key.fingerprint a) (X509.Public_key.fingerprint b) in if not (eq_pub pub (X509.Certificate.public_key s)) then invalid "public / private key combination" ) ; ( match Utils.init_and_last chain with | Some (ch, trust) -> (* TODO: verify that certificates are x509 v3 if TLS_1_2 *) ( match X509.Validation.verify_chain_of_trust ~time:(fun () -> None) ~host:None ~anchors:[trust] (s :: ch) with | Ok _ -> () | Error x -> let s = Fmt.to_to_string X509.Validation.pp_validation_error x in invalid ("certificate chain does not validate: " ^ s)) | None -> () ) | _ -> invalid "certificate chain" let validate_client config = match config.own_certificates with | `None -> () | `Single c -> validate_certificate_chain c | _ -> invalid_arg "multiple client certificates not supported in client config" let non_overlapping cs = let namessets = List.filter_map (function | (s :: _, _) -> Some s | _ -> None) cs |> List.map X509.Certificate.hostnames in let rec check = function | [] -> () | s::ss -> if not (List.for_all (fun ss' -> X509.Host.Set.is_empty (X509.Host.Set.inter s ss')) ss) then invalid_arg "overlapping names in certificates" else check ss in check namessets module KU = Set.Make (struct type t = X509.Extension.key_usage let compare a b = compare a b end) module PK = Map.Make (struct type t = [ `RSA | `ED25519 | `P256 | `P384 | `P521 ] let compare a b = compare a b end) let validate_server config = let open Ciphersuite in let usages = List.fold_left (fun acc c -> KU.add (required_usage (ciphersuite_kex c)) acc) KU.empty config.ciphers and certificate_chains = match config.own_certificates with | `Single c -> [c] | `Multiple cs -> cs | `Multiple_default (c, cs) -> c :: cs | `None -> invalid "no server certificate provided" in let server_certs = List.map (function (s::_,_) -> s | _ -> invalid "empty certificate chain") certificate_chains in if not (KU.for_all (fun u -> List.exists (supports_key_usage ~not_present:true u) server_certs) usages) then invalid "certificate usage does not match" ; List.iter validate_certificate_chain certificate_chains ; let rsa_cert, ec_cert = let is_ec_cert c = match X509.Certificate.public_key c with | `ED25519 _ | `P256 _ | `P384 _ | `P521 _ -> true | _ -> false and is_rsa_cert c = match X509.Certificate.public_key c with | `RSA _ -> true | _ -> false in List.exists is_rsa_cert server_certs, List.exists is_ec_cert server_certs in let ciphers = List.filter (function | #Ciphersuite.ciphersuite13 -> true | c -> let keytype = ciphersuite_keytype c in (rsa_cert && keytype = `RSA) || (ec_cert && keytype = `EC)) config.ciphers in ( match config.own_certificates with | `Multiple cs | `Multiple_default (_, cs) -> let add k v acc = match PK.find_opt k acc with | None -> PK.add k [v] acc | Some r -> PK.add k (v :: r) acc in let pk = List.fold_left (fun acc cs -> match snd cs with | `RSA _ -> add `RSA cs acc | `ED25519 _ -> add `ED25519 cs acc | `P256 _ -> add `P256 cs acc | `P384 _ -> add `P384 cs acc | `P521 _ -> add `P521 cs acc | _ -> invalid "unknown key type") PK.empty cs in PK.iter (fun _ chains -> non_overlapping chains) pk | _ -> () ); { config with ciphers } let validate_keys_sig_algs config = let _, v_max = config.protocol_versions in if v_max = `TLS_1_2 || v_max = `TLS_1_3 then let certificate_chains = match config.own_certificates with | `Single c -> [c] | `Multiple cs -> cs | `Multiple_default (c, cs) -> c :: cs | `None -> invalid "no server certificate provided" in let server_keys = List.map (function | (s::_,_) -> X509.Certificate.public_key s | _ -> invalid "empty certificate chain") certificate_chains in if not (List.for_all (fun cert -> List.exists (pk_matches_sa cert) config.signature_algorithms) server_keys) then invalid "certificate provided which does not allow any signature algorithm" type client = config type server = config let of_server conf = conf and of_client conf = conf let peer conf name = { conf with peer_name = Some name } let with_authenticator conf auth = { conf with authenticator = Some auth } let with_own_certificates conf own_certificates = { conf with own_certificates } let with_acceptable_cas conf acceptable_cas = { conf with acceptable_cas } let (<?>) ma b = match ma with None -> b | Some a -> a let client ~authenticator ?peer_name ?ciphers ?version ?signature_algorithms ?reneg ?certificates ?cached_session ?cached_ticket ?ticket_cache ?alpn_protocols ?groups ?ip () = let ciphers', groups = ciphers_and_groups ?ciphers ?groups default_config.ciphers in let ciphers, signature_algorithms = ciphers_and_sig_alg ?ciphers ?signature_algorithms ciphers' in let config = { default_config with authenticator = Some authenticator ; ciphers ; protocol_versions = version <?> default_config.protocol_versions ; signature_algorithms ; use_reneg = reneg <?> default_config.use_reneg ; own_certificates = certificates <?> default_config.own_certificates ; peer_name = peer_name ; cached_session = cached_session ; alpn_protocols = alpn_protocols <?> default_config.alpn_protocols ; ticket_cache = ticket_cache ; cached_ticket = cached_ticket ; groups ; ip ; } in let config = validate_common config in validate_client config ; Log.debug (fun m -> m "client with %a" pp_config config); config let server ?ciphers ?version ?signature_algorithms ?reneg ?certificates ?acceptable_cas ?authenticator ?session_cache ?ticket_cache ?alpn_protocols ?groups ?zero_rtt ?ip () = let ciphers', groups = ciphers_and_groups ?ciphers ?groups default_config.ciphers in let ciphers, signature_algorithms = ciphers_and_sig_alg ?ciphers ?signature_algorithms ciphers' in let config = { default_config with ciphers ; protocol_versions = version <?> default_config.protocol_versions ; signature_algorithms ; use_reneg = reneg <?> default_config.use_reneg ; own_certificates = certificates <?> default_config.own_certificates ; acceptable_cas = acceptable_cas <?> default_config.acceptable_cas ; authenticator = authenticator ; session_cache = session_cache <?> default_config.session_cache ; alpn_protocols = alpn_protocols <?> default_config.alpn_protocols ; ticket_cache = ticket_cache ; groups ; zero_rtt = zero_rtt <?> default_config.zero_rtt ; ip ; } in let config = validate_server config in let config = validate_common config in validate_keys_sig_algs config; Log.debug (fun m -> m "server with %a" pp_config config); config