pub struct SslContextBuilder { /* private fields */ }
Expand description

A builder for SslContexts.

Implementations§

source§

impl SslContextBuilder

source

pub fn set_async_select_certificate_callback<F>(&mut self, callback: F)
where F: Fn(&mut ClientHello<'_>) -> Result<BoxSelectCertFuture, AsyncSelectCertError> + Send + Sync + 'static,

Sets a callback that is called before most ClientHello processing and before the decision whether to resume a session is made. The callback may inspect the ClientHello and configure the connection.

This method uses a function that returns a future whose output is itself a closure that will be passed ClientHello to configure the connection based on the computations done in the future.

A task waker must be set on Ssl values associated with the resulting SslContext with SslRef::set_task_waker.

See SslContextBuilder::set_select_certificate_callback for the sync setter of this callback.

source

pub fn set_async_private_key_method( &mut self, method: impl AsyncPrivateKeyMethod )

Configures a custom private key method on the context.

A task waker must be set on Ssl values associated with the resulting SslContext with SslRef::set_task_waker.

See AsyncPrivateKeyMethod for more details.

source

pub unsafe fn set_async_get_session_callback<F>(&mut self, callback: F)
where F: Fn(&mut SslRef, &[u8]) -> Option<BoxGetSessionFuture> + Send + Sync + 'static,

Sets a callback that is called when a client proposed to resume a session but it was not found in the internal cache.

The callback is passed a reference to the session ID provided by the client. It should return the session corresponding to that ID if available. This is only used for servers, not clients.

A task waker must be set on Ssl values associated with the resulting SslContext with SslRef::set_task_waker.

See SslContextBuilder::set_get_session_callback for the sync setter of this callback.

§Safety

The returned SslSession must not be associated with a different [SslContext].

source

pub fn set_async_custom_verify_callback<F>( &mut self, mode: SslVerifyMode, callback: F )
where F: Fn(&mut SslRef) -> Result<BoxCustomVerifyFuture, SslAlert> + Send + Sync + 'static,

Configures certificate verification.

The callback should return Ok(()) if the certificate is valid. If the certificate is invalid, the callback should return SslVerifyError::Invalid(alert). Some useful alerts include SslAlert::CERTIFICATE_EXPIRED, SslAlert::CERTIFICATE_REVOKED, SslAlert::UNKNOWN_CA, SslAlert::BAD_CERTIFICATE, SslAlert::CERTIFICATE_UNKNOWN, and SslAlert::INTERNAL_ERROR. See RFC 5246 section 7.2.2 for their precise meanings.

A task waker must be set on Ssl values associated with the resulting SslContext with SslRef::set_task_waker.

See SslContextBuilder::set_custom_verify_callback for the sync version of this method.

§Panics

This method panics if this Ssl is associated with a RPK context.

source§

impl SslContextBuilder

source

pub fn new_rpk() -> Result<SslContextBuilder, ErrorStack>

Available on crate feature rpk only.

Creates a new SslContextBuilder to be used with Raw Public Key.

This corresponds to SSL_CTX_new.

source

pub fn set_rpk_certificate(&mut self, cert: &[u8]) -> Result<(), ErrorStack>

Available on crate feature rpk only.

Sets raw public key certificate in DER format.

source

pub fn set_null_chain_private_key<T>( &mut self, key: &PKeyRef<T> ) -> Result<(), ErrorStack>
where T: HasPrivate,

Available on crate feature rpk only.

Sets RPK null chain private key.

source§

impl SslContextBuilder

source

pub fn new(method: SslMethod) -> Result<SslContextBuilder, ErrorStack>

Creates a new SslContextBuilder.

This corresponds to SSL_CTX_new.

source

pub unsafe fn from_ptr(ctx: *mut SSL_CTX, is_rpk: bool) -> SslContextBuilder

Available on crate feature rpk only.

Creates an SslContextBuilder from a pointer to a raw OpenSSL value.

§Safety

The caller must ensure that the pointer is valid and uniquely owned by the builder.

source

pub fn as_ptr(&self) -> *mut SSL_CTX

Returns a pointer to the raw OpenSSL value.

source

pub fn set_verify(&mut self, mode: SslVerifyMode)

Configures the certificate verification method for new connections.

This corresponds to SSL_CTX_set_verify.

source

pub fn set_verify_callback<F>(&mut self, mode: SslVerifyMode, callback: F)
where F: Fn(bool, &mut X509StoreContextRef) -> bool + 'static + Sync + Send,

Configures the certificate verification method for new connections and registers a verification callback.

Warning: This callback does not replace the default certificate verification process and is, instead, called multiple times in the course of that process. It is very difficult to implement this callback correctly, without inadvertently relying on implementation details or making incorrect assumptions about when the callback is called.

Instead, use SslContextBuilder::set_custom_verify_callback to customize certificate verification. Those callbacks can inspect the peer-sent chain, call X509StoreContextRef::verify_cert and inspect the result, or perform other operations more straightforwardly.

This corresponds to SSL_CTX_set_verify.

§Panics

This method panics if this Ssl is associated with a RPK context.

source

pub fn set_custom_verify_callback<F>( &mut self, mode: SslVerifyMode, callback: F )
where F: Fn(&mut SslRef) -> Result<(), SslVerifyError> + 'static + Sync + Send,

Configures certificate verification.

The callback should return Ok(()) if the certificate is valid. If the certificate is invalid, the callback should return SslVerifyError::Invalid(alert). Some useful alerts include SslAlert::CERTIFICATE_EXPIRED, SslAlert::CERTIFICATE_REVOKED, SslAlert::UNKNOWN_CA, SslAlert::BAD_CERTIFICATE, SslAlert::CERTIFICATE_UNKNOWN, and SslAlert::INTERNAL_ERROR. See RFC 5246 section 7.2.2 for their precise meanings.

To verify a certificate asynchronously, the callback may return Err(SslVerifyError::Retry). The handshake will then pause with an error with code ErrorCode::WANT_CERTIFICATE_VERIFY.

§Panics

This method panics if this Ssl is associated with a RPK context.

source

pub fn set_servername_callback<F>(&mut self, callback: F)
where F: Fn(&mut SslRef, &mut SslAlert) -> Result<(), SniError> + 'static + Sync + Send,

Configures the server name indication (SNI) callback for new connections.

SNI is used to allow a single server to handle requests for multiple domains, each of which has its own certificate chain and configuration.

Obtain the server name with the servername method and then set the corresponding context with set_ssl_context

This corresponds to SSL_CTX_set_tlsext_servername_callback.

source

pub fn set_verify_depth(&mut self, depth: u32)

Sets the certificate verification depth.

If the peer’s certificate chain is longer than this value, verification will fail.

This corresponds to SSL_CTX_set_verify_depth.

source

pub fn set_verify_cert_store( &mut self, cert_store: X509Store ) -> Result<(), ErrorStack>

Sets a custom certificate store for verifying peer certificates.

This corresponds to SSL_CTX_set0_verify_cert_store.

source

pub fn set_cert_store(&mut self, cert_store: X509Store)

Replaces the context’s certificate store.

This corresponds to SSL_CTX_set_cert_store.

source

pub fn set_read_ahead(&mut self, read_ahead: bool)

Controls read ahead behavior.

If enabled, OpenSSL will read as much data as is available from the underlying stream, instead of a single record at a time.

It has no effect when used with DTLS.

This corresponds to SSL_CTX_set_read_ahead.

source

pub fn set_mode(&mut self, mode: SslMode) -> SslMode

Sets the mode used by the context, returning the previous mode.

This corresponds to SSL_CTX_set_mode.

source

pub fn set_tmp_dh(&mut self, dh: &DhRef<Params>) -> Result<(), ErrorStack>

Sets the parameters to be used during ephemeral Diffie-Hellman key exchange.

This corresponds to SSL_CTX_set_tmp_dh.

source

pub fn set_tmp_ecdh(&mut self, key: &EcKeyRef<Params>) -> Result<(), ErrorStack>

Sets the parameters to be used during ephemeral elliptic curve Diffie-Hellman key exchange.

This corresponds to SSL_CTX_set_tmp_ecdh.

source

pub fn set_default_verify_paths(&mut self) -> Result<(), ErrorStack>

Use the default locations of trusted certificates for verification.

These locations are read from the SSL_CERT_FILE and SSL_CERT_DIR environment variables if present, or defaults specified at OpenSSL build time otherwise.

This corresponds to SSL_CTX_set_default_verify_paths.

source

pub fn set_ca_file<P: AsRef<Path>>(&mut self, file: P) -> Result<(), ErrorStack>

Loads trusted root certificates from a file.

The file should contain a sequence of PEM-formatted CA certificates.

This corresponds to SSL_CTX_load_verify_locations.

source

pub fn set_client_ca_list(&mut self, list: Stack<X509Name>)

Sets the list of CA names sent to the client.

The CA certificates must still be added to the trust root - they are not automatically set as trusted by this method.

This corresponds to SSL_CTX_set_client_CA_list.

source

pub fn add_client_ca(&mut self, cacert: &X509Ref) -> Result<(), ErrorStack>

Add the provided CA certificate to the list sent by the server to the client when requesting client-side TLS authentication.

This corresponds to SSL_CTX_add_client_CA.

source

pub fn set_session_id_context( &mut self, sid_ctx: &[u8] ) -> Result<(), ErrorStack>

Set the context identifier for sessions.

This value identifies the server’s session cache to clients, telling them when they’re able to reuse sessions. It should be set to a unique value per server, unless multiple servers share a session cache.

This value should be set when using client certificates, or each request will fail its handshake and need to be restarted.

This corresponds to SSL_CTX_set_session_id_context.

source

pub fn set_certificate_file<P: AsRef<Path>>( &mut self, file: P, file_type: SslFiletype ) -> Result<(), ErrorStack>

Loads a leaf certificate from a file.

Only a single certificate will be loaded - use add_extra_chain_cert to add the remainder of the certificate chain, or set_certificate_chain_file to load the entire chain from a single file.

This corresponds to SSL_CTX_use_certificate_file.

source

pub fn set_certificate_chain_file<P: AsRef<Path>>( &mut self, file: P ) -> Result<(), ErrorStack>

Loads a certificate chain from a file.

The file should contain a sequence of PEM-formatted certificates, the first being the leaf certificate, and the remainder forming the chain of certificates up to and including the trusted root certificate.

This corresponds to SSL_CTX_use_certificate_chain_file.

source

pub fn set_certificate(&mut self, cert: &X509Ref) -> Result<(), ErrorStack>

Sets the leaf certificate.

Use add_extra_chain_cert to add the remainder of the certificate chain.

This corresponds to SSL_CTX_use_certificate.

source

pub fn add_extra_chain_cert(&mut self, cert: X509) -> Result<(), ErrorStack>

Appends a certificate to the certificate chain.

This chain should contain all certificates necessary to go from the certificate specified by set_certificate to a trusted root.

This corresponds to SSL_CTX_add_extra_chain_cert.

source

pub fn set_private_key_file<P: AsRef<Path>>( &mut self, file: P, file_type: SslFiletype ) -> Result<(), ErrorStack>

Loads the private key from a file.

This corresponds to SSL_CTX_use_PrivateKey_file.

source

pub fn set_private_key<T>(&mut self, key: &PKeyRef<T>) -> Result<(), ErrorStack>
where T: HasPrivate,

Sets the private key.

This corresponds to SSL_CTX_use_PrivateKey.

source

pub fn set_cipher_list(&mut self, cipher_list: &str) -> Result<(), ErrorStack>

Sets the list of supported ciphers for protocols before TLSv1.3.

The set_ciphersuites method controls the cipher suites for TLSv1.3 in OpenSSL. BoringSSL doesn’t implement set_ciphersuites. See https://github.com/google/boringssl/blob/master/include/openssl/ssl.h#L1542-L1544

See ciphers for details on the format.

This corresponds to SSL_CTX_set_cipher_list.

source

pub fn ciphers(&self) -> Option<&StackRef<SslCipher>>

Gets the list of supported ciphers for protocols before TLSv1.3.

See ciphers for details on the format

This corresponds to [SSL_CTX_get_ciphers].

source

pub fn set_options(&mut self, option: SslOptions) -> SslOptions

Sets the options used by the context, returning the old set.

This corresponds to SSL_CTX_set_options.

§Note

This enables the specified options, but does not disable unspecified options. Use clear_options for that.

source

pub fn options(&self) -> SslOptions

Returns the options used by the context.

This corresponds to SSL_CTX_get_options.

source

pub fn clear_options(&mut self, option: SslOptions) -> SslOptions

Clears the options used by the context, returning the old set.

This corresponds to SSL_CTX_clear_options.

source

pub fn set_min_proto_version( &mut self, version: Option<SslVersion> ) -> Result<(), ErrorStack>

Sets the minimum supported protocol version.

A value of None will enable protocol versions down the the lowest version supported by OpenSSL.

This corresponds to SSL_CTX_set_min_proto_version.

source

pub fn set_max_proto_version( &mut self, version: Option<SslVersion> ) -> Result<(), ErrorStack>

Sets the maximum supported protocol version.

A value of None will enable protocol versions down the the highest version supported by OpenSSL.

This corresponds to SSL_CTX_set_max_proto_version.

source

pub fn min_proto_version(&mut self) -> Option<SslVersion>

Gets the minimum supported protocol version.

A value of None indicates that all versions down the the lowest version supported by OpenSSL are enabled.

This corresponds to SSL_CTX_get_min_proto_version.

source

pub fn max_proto_version(&mut self) -> Option<SslVersion>

Gets the maximum supported protocol version.

A value of None indicates that all versions down the the highest version supported by OpenSSL are enabled.

This corresponds to SSL_CTX_get_max_proto_version.

source

pub fn set_alpn_protos(&mut self, protocols: &[u8]) -> Result<(), ErrorStack>

Sets the protocols to sent to the server for Application Layer Protocol Negotiation (ALPN).

The input must be in ALPN “wire format”. It consists of a sequence of supported protocol names prefixed by their byte length. For example, the protocol list consisting of spdy/1 and http/1.1 is encoded as b"\x06spdy/1\x08http/1.1". The protocols are ordered by preference.

This corresponds to SSL_CTX_set_alpn_protos.

source

pub fn set_tlsext_use_srtp(&mut self, protocols: &str) -> Result<(), ErrorStack>

Enables the DTLS extension “use_srtp” as defined in RFC5764.

This corresponds to SSL_CTX_set_tlsext_use_srtp.

source

pub fn set_alpn_select_callback<F>(&mut self, callback: F)
where F: for<'a> Fn(&mut SslRef, &'a [u8]) -> Result<&'a [u8], AlpnError> + 'static + Sync + Send,

Sets the callback used by a server to select a protocol for Application Layer Protocol Negotiation (ALPN).

The callback is provided with the client’s protocol list in ALPN wire format. See the documentation for SslContextBuilder::set_alpn_protos for details. It should return one of those protocols on success. The select_next_proto function implements the standard protocol selection algorithm.

This corresponds to SSL_CTX_set_alpn_select_cb.

source

pub fn set_select_certificate_callback<F>(&mut self, callback: F)
where F: Fn(ClientHello<'_>) -> Result<(), SelectCertError> + Sync + Send + 'static,

Sets a callback that is called before most ClientHello processing and before the decision whether to resume a session is made. The callback may inspect the ClientHello and configure the connection.

This corresponds to SSL_CTX_set_select_certificate_cb.

source

pub fn set_private_key_method<M>(&mut self, method: M)

Configures a custom private key method on the context.

See PrivateKeyMethod for more details.

This corresponds to SSL_CTX_set_private_key_method

source

pub fn check_private_key(&self) -> Result<(), ErrorStack>

Checks for consistency between the private key and certificate.

This corresponds to SSL_CTX_check_private_key.

source

pub fn cert_store(&self) -> &X509StoreBuilderRef

Returns a shared reference to the context’s certificate store.

This corresponds to SSL_CTX_get_cert_store.

source

pub fn cert_store_mut(&mut self) -> &mut X509StoreBuilderRef

Returns a mutable reference to the context’s certificate store.

This corresponds to SSL_CTX_get_cert_store.

source

pub fn set_status_callback<F>(&mut self, callback: F) -> Result<(), ErrorStack>
where F: Fn(&mut SslRef) -> Result<bool, ErrorStack> + 'static + Sync + Send,

Sets the callback dealing with OCSP stapling.

On the client side, this callback is responsible for validating the OCSP status response returned by the server. The status may be retrieved with the SslRef::ocsp_status method. A response of Ok(true) indicates that the OCSP status is valid, and a response of Ok(false) indicates that the OCSP status is invalid and the handshake should be terminated.

On the server side, this callback is resopnsible for setting the OCSP status response to be returned to clients. The status may be set with the SslRef::set_ocsp_status method. A response of Ok(true) indicates that the OCSP status should be returned to the client, and Ok(false) indicates that the status should not be returned to the client.

This corresponds to SSL_CTX_set_tlsext_status_cb.

source

pub fn set_psk_client_callback<F>(&mut self, callback: F)
where F: Fn(&mut SslRef, Option<&[u8]>, &mut [u8], &mut [u8]) -> Result<usize, ErrorStack> + 'static + Sync + Send,

Sets the callback for providing an identity and pre-shared key for a TLS-PSK client.

The callback will be called with the SSL context, an identity hint if one was provided by the server, a mutable slice for each of the identity and pre-shared key bytes. The identity must be written as a null-terminated C string.

This corresponds to SSL_CTX_set_psk_client_callback.

source

pub fn set_psk_callback<F>(&mut self, callback: F)
where F: Fn(&mut SslRef, Option<&[u8]>, &mut [u8], &mut [u8]) -> Result<usize, ErrorStack> + 'static + Sync + Send,

👎Deprecated since 0.10.10: renamed to set_psk_client_callback
source

pub fn set_psk_server_callback<F>(&mut self, callback: F)
where F: Fn(&mut SslRef, Option<&[u8]>, &mut [u8]) -> Result<usize, ErrorStack> + 'static + Sync + Send,

Sets the callback for providing an identity and pre-shared key for a TLS-PSK server.

The callback will be called with the SSL context, an identity provided by the client, and, a mutable slice for the pre-shared key bytes. The callback returns the number of bytes in the pre-shared key.

This corresponds to SSL_CTX_set_psk_server_callback.

source

pub fn set_new_session_callback<F>(&mut self, callback: F)
where F: Fn(&mut SslRef, SslSession) + 'static + Sync + Send,

Sets the callback which is called when new sessions are negotiated.

This can be used by clients to implement session caching. While in TLSv1.2 the session is available to access via SslRef::session immediately after the handshake completes, this is not the case for TLSv1.3. There, a session is not generally available immediately, and the server may provide multiple session tokens to the client over a single session. The new session callback is a portable way to deal with both cases.

Note that session caching must be enabled for the callback to be invoked, and it defaults off for clients. set_session_cache_mode controls that behavior.

This corresponds to SSL_CTX_sess_set_new_cb.

source

pub fn set_remove_session_callback<F>(&mut self, callback: F)
where F: Fn(&SslContextRef, &SslSessionRef) + 'static + Sync + Send,

Sets the callback which is called when sessions are removed from the context.

Sessions can be removed because they have timed out or because they are considered faulty.

This corresponds to SSL_CTX_sess_set_remove_cb.

source

pub unsafe fn set_get_session_callback<F>(&mut self, callback: F)
where F: Fn(&mut SslRef, &[u8]) -> Result<Option<SslSession>, GetSessionPendingError> + 'static + Sync + Send,

Sets the callback which is called when a client proposed to resume a session but it was not found in the internal cache.

The callback is passed a reference to the session ID provided by the client. It should return the session corresponding to that ID if available. This is only used for servers, not clients.

This corresponds to SSL_CTX_sess_set_get_cb.

§Safety

The returned SslSession must not be associated with a different SslContext.

source

pub fn set_keylog_callback<F>(&mut self, callback: F)
where F: Fn(&SslRef, &str) + 'static + Sync + Send,

Sets the TLS key logging callback.

The callback is invoked whenever TLS key material is generated, and is passed a line of NSS SSLKEYLOGFILE-formatted text. This can be used by tools like Wireshark to decrypt message traffic. The line does not contain a trailing newline.

This corresponds to SSL_CTX_set_keylog_callback.

source

pub fn set_session_cache_mode( &mut self, mode: SslSessionCacheMode ) -> SslSessionCacheMode

Sets the session caching mode use for connections made with the context.

Returns the previous session caching mode.

This corresponds to SSL_CTX_set_session_cache_mode.

source

pub fn set_ex_data<T>(&mut self, index: Index<SslContext, T>, data: T)

Sets the extra data at the specified index.

This can be used to provide data to callbacks registered with the context. Use the SslContext::new_ex_index method to create an Index.

This corresponds to SSL_CTX_set_ex_data.

Note that if this method is called multiple times with the same index, any previous value stored in the SslContextBuilder will be leaked.

source

pub fn replace_ex_data<T>( &mut self, index: Index<SslContext, T>, data: T ) -> Option<T>

Sets or overwrites the extra data at the specified index.

This can be used to provide data to callbacks registered with the context. Use the Ssl::new_ex_index method to create an Index.

This corresponds to SSL_set_ex_data.

Any previous value will be returned and replaced by the new one.

source

pub fn set_session_cache_size(&mut self, size: u32) -> u64

Sets the context’s session cache size limit, returning the previous limit.

A value of 0 means that the cache size is unbounded.

This corresponds to SSL_CTX_sess_get_cache_size.

source

pub fn set_sigalgs_list(&mut self, sigalgs: &str) -> Result<(), ErrorStack>

Sets the context’s supported signature algorithms.

This corresponds to SSL_CTX_set1_sigalgs_list.

source

pub fn set_grease_enabled(&mut self, enabled: bool)

Set’s whether the context should enable GREASE.

This corresponds to SSL_CTX_set_grease_enabled

source

pub fn set_verify_algorithm_prefs( &mut self, prefs: &[SslSignatureAlgorithm] ) -> Result<(), ErrorStack>

Sets the context’s supported signature verification algorithms.

This corresponds to SSL_CTX_set_verify_algorithm_prefs

source

pub fn enable_signed_cert_timestamps(&mut self)

Enables SCT requests on all client SSL handshakes.

This corresponds to SSL_CTX_enable_signed_cert_timestamps

source

pub fn enable_ocsp_stapling(&mut self)

Enables OCSP stapling on all client SSL handshakes.

This corresponds to SSL_CTX_enable_ocsp_stapling

source

pub fn set_curves(&mut self, curves: &[SslCurve]) -> Result<(), ErrorStack>

Available on non-crate feature kx-safe-default only.

Sets the context’s supported curves.

This corresponds to SSL_CTX_set1_curves

source

pub fn set_compliance_policy( &mut self, policy: CompliancePolicy ) -> Result<(), ErrorStack>

Available on non-crate feature fips only.

Sets the context’s compliance policy.

This corresponds to [SSL_CTX_set_compliance_policy]

[SSL_CTX_set_compliance_policy] https://commondatastorage.googleapis.com/chromium-boringssl-docs/ssl.h.html#SSL_CTX_set_compliance_policy This feature isn’t available in the certified version of BoringSSL.

source

pub fn build(self) -> SslContext

Consumes the builder, returning a new SslContext.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.