Skip to content

Commit

Permalink
Support certificate transparency by default
Browse files Browse the repository at this point in the history
  • Loading branch information
Ralith authored and djc committed Jan 10, 2019
1 parent 117b556 commit 2ef6751
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions quinn/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ tokio-timer = "0.2.1"
untrusted = "0.6.2"
webpki = "0.18"
webpki-roots = "0.15"
ct-logs = "0.4.0"
libc = "0.2.46"
mio = "0.6"

Expand Down
1 change: 1 addition & 0 deletions quinn/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -396,6 +396,7 @@ impl ClientConfigBuilder {
config
.root_store
.add_server_trust_anchors(&webpki_roots::TLS_SERVER_ROOTS);
config.ct_logs = Some(&ct_logs::LOGS);
config.versions = vec![ProtocolVersion::TLSv1_3];
Self { config }
}
Expand Down

0 comments on commit 2ef6751

Please sign in to comment.