Crate futures_boring
source ·Modules§
- Low level AES IGE and key wrapping functionality
- Defines the format of certificiates
- Base64 encoding support.
- BigNum implementation
- Interface for processing OpenSSL configuration files.
- Shared secret derivation.
- Digital Signatures
- Elliptic Curve
- Low level Elliptic Curve Digital Signature Algorithm (ECDSA) functions.
- Errors returned by OpenSSL library.
- FIPS 140-2 support.
- Utilities to safely compare cryptographic values.
- A collection of numerical identifiers for OpenSSL objects.
- PKCS #12 archives.
- Public/private key processing.
- Utilities for secure random number generation.
- Rivest–Shamir–Adleman cryptosystem
- The SHA family of hashes.
- Message signatures.
- SSL/TLS support.
- High level interface to certain symmetric ciphers.
- The standard defining the format of public key certificates.
Structs§
- A fatal error to be returned from async private key methods.
- A fatal error to be returned from async select certificate callbacks.
- The error type returned after a failed handshake.
- Future for an ongoing TLS handshake.
- A wrapper around an underlying raw stream which implements the SSL protocol.
- A partially constructed
SslStream, useful for unusual handshakes.
Traits§
- Describes async private key hooks. This is used to off-load signing operations to a custom, potentially asynchronous, backend. Metadata about the key such as the type and size are parsed out of the certificate.
- Extensions to
SslContextBuilder.
Functions§
- Asynchronously performs a server-side TLS handshake over the provided stream.
- Asynchronously performs a client-side TLS handshake over the provided stream.
Type Aliases§
- The type of callbacks returned by
BoxSelectCertFuturemethods. - The type of futures to pass to [
SslContextBuilderExt::set_async_get_session_callback]. - The type of callbacks returned by
BoxPrivateKeyMethodFuture. - The type of futures returned by
AsyncPrivateKeyMethodmethods. - The type of callbacks returned by
BoxSelectCertFuturemethods. - The type of futures to pass to [
SslContextBuilderExt::set_async_select_certificate_callback]. - Convenience alias for futures stored in
Sslex data by [SslContextBuilderExt] methods.