-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update rustls #153
Update rustls #153
Conversation
@@ -64,7 +64,6 @@ mod test { | |||
|
|||
let join_handle = tokio::task::spawn(async move { | |||
let server_config = ServerConfig::builder() | |||
.with_safe_defaults() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
https://docs.rs/rustls/latest/src/rustls/server/server_conn.rs.html#349-354
Looks like "safe defaults" are automatically applied to the builder
rustls::SignatureScheme::RSA_PKCS1_SHA256, | ||
rustls::SignatureScheme::RSA_PKCS1_SHA384, | ||
rustls::SignatureScheme::RSA_PKCS1_SHA512, | ||
] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@gyuho, should I limit this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Lgtm. Thanks 🙏
Update rustls and surrounding dependencies