Skip to content

Commit

Permalink
client: use DEFAULT_CIPHER_SUITES if none are specified
Browse files Browse the repository at this point in the history
I'm having trouble figuring out how to pass in a set of cipher suites
using C, and since all I want is the default set, just make it easier
by providing a reasonable default for the NULL case.

Fixes rustls#163.
  • Loading branch information
kevinburke committed Oct 29, 2021
1 parent fbbf99b commit dd7468c
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 18 deletions.
34 changes: 21 additions & 13 deletions src/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ use rustls::client::{ResolvesClientCert, ServerCertVerified};
use rustls::{
sign::CertifiedKey, Certificate, ClientConfig, ClientConnection, ConfigBuilder,
ProtocolVersion, RootCertStore, SupportedCipherSuite, WantsVerifier, ALL_CIPHER_SUITES,
DEFAULT_CIPHER_SUITES,
};

use crate::cipher::{rustls_certified_key, rustls_root_cert_store, rustls_supported_ciphersuite};
Expand Down Expand Up @@ -90,11 +91,12 @@ impl rustls_client_config_builder {

/// Create a rustls_client_config_builder. Caller owns the memory and must
/// eventually call rustls_client_config_builder_build, then free the
/// resulting rustls_client_config. Specify cipher suites in preference order;
/// the `cipher_suites` parameter must point to an array containing `len`
/// pointers to `rustls_supported_ciphersuite` previously obtained from
/// `rustls_all_ciphersuites_get()`. Set the TLS protocol versions to use
/// when negotiating a TLS session.
/// resulting rustls_client_config. Specify cipher suites in preference
/// order; the `cipher_suites` parameter must either be null (default
/// suites will be used) or point to an array containing `len` pointers
/// to `rustls_supported_ciphersuite` objects previously obtained from
/// `rustls_all_ciphersuites_get_entry()`. Set the TLS protocol versions to
/// use when negotiating a TLS session.
///
/// `tls_version` is the version of the protocol, as defined in rfc8446,
/// ch. 4.2.1 and end of ch. 5.1. Some values are defined in
Expand All @@ -111,15 +113,21 @@ impl rustls_client_config_builder {
builder: *mut *mut rustls_client_config_builder_wants_verifier,
) -> rustls_result {
ffi_panic_boundary! {
let cipher_suites: &[*const rustls_supported_ciphersuite] = try_slice!(cipher_suites, cipher_suites_len);
let mut cs_vec: Vec<SupportedCipherSuite> = Vec::new();
for &cs in cipher_suites.into_iter() {
let cs = try_ref_from_ptr!(cs);
match ALL_CIPHER_SUITES.iter().find(|&acs| cs.eq(acs)) {
Some(scs) => cs_vec.push(scs.clone()),
None => return InvalidParameter,
let cs_vec: Vec<SupportedCipherSuite> = match cipher_suites.is_null() {
true => DEFAULT_CIPHER_SUITES.to_vec(),
false => {
let cipher_suites: &[*const rustls_supported_ciphersuite] = try_slice!(cipher_suites, cipher_suites_len);
let mut cs_vec = Vec::new();
for &cs in cipher_suites.into_iter() {
let cs = try_ref_from_ptr!(cs);
match ALL_CIPHER_SUITES.iter().find(|&acs| cs.eq(acs)) {
Some(scs) => cs_vec.push(scs.clone()),
None => return InvalidParameter,
}
}
cs_vec
}
}
};

let tls_versions: &[u16] = try_slice!(tls_versions, tls_versions_len);
let mut versions = vec![];
Expand Down
11 changes: 6 additions & 5 deletions src/rustls.h
Original file line number Diff line number Diff line change
Expand Up @@ -637,11 +637,12 @@ struct rustls_client_config_builder_wants_verifier *rustls_client_config_builder
/**
* Create a rustls_client_config_builder. Caller owns the memory and must
* eventually call rustls_client_config_builder_build, then free the
* resulting rustls_client_config. Specify cipher suites in preference order;
* the `cipher_suites` parameter must point to an array containing `len`
* pointers to `rustls_supported_ciphersuite` previously obtained from
* `rustls_all_ciphersuites_get()`. Set the TLS protocol versions to use
* when negotiating a TLS session.
* resulting rustls_client_config. Specify cipher suites in preference
* order; the `cipher_suites` parameter must either be null (default
* suites will be used) or point to an array containing `len` pointers
* to `rustls_supported_ciphersuite` objects previously obtained from
* `rustls_all_ciphersuites_get_entry()`. Set the TLS protocol versions to
* use when negotiating a TLS session.
*
* `tls_version` is the version of the protocol, as defined in rfc8446,
* ch. 4.2.1 and end of ch. 5.1. Some values are defined in
Expand Down

0 comments on commit dd7468c

Please sign in to comment.