Skip to content

connect: switch to aws_lc_rs as crypto provider for rustls - #173

Closed
patricklyc wants to merge 1 commit into
NetSys:mainfrom
patricklyc:crypto-provider
Closed

connect: switch to aws_lc_rs as crypto provider for rustls#173
patricklyc wants to merge 1 commit into
NetSys:mainfrom
patricklyc:crypto-provider

Conversation

@patricklyc

Copy link
Copy Markdown
Collaborator

Previously, we used RustCrypto as the crypto provider for rustls. It was considered inadequate because it is not production- ready (the integration is in alpha state), relatively slow and has not been externally audited.

The candidates for replacement, aws_lc_rs and ring were evaluated by the following criteria:

  • Reasonably fast
  • Production ready
  • Supports ed25519 keys
  • Easy to build
  • Works everywhere
  • Statically linked binary
  • Externally audited
  • FIPS support (optional)

The only option for FIPS support, aws-lc-fips-sys, failed to build so this point of consideration was discarded.
Both candidates fit all criteria. aws_lc_rs won out for being the new default of the rustls project and its more active maintenance, while the only additional build dependency is a C compiler.

This commit removes RustCrypto as a dependency. The explicitly configured builders in src/connect.rs were switched over. Any other usage of rustls will fall back to the default provider, aws_lc_rs.

Addresses IM-97 and IM-57.

Previously, we used RustCrypto as the crypto provider for rustls.
It was considered inadequate because it is not production-
ready (the integration is in alpha state), relatively slow
and has not been externally audited.
The candidates for replacement, aws_lc_rs and ring were evaluated
by the following criteria:
- Reasonably fast
- Production ready
- Supports ed25519 keys
- Easy to build
- Works everywhere
- Statically linked binary
- Externally audited
- FIPS support (optional)
The only option for FIPS support, aws-lc-fips-sys, failed to build
so this point of consideration was discarded.
Both candidates fit all criteria. aws_lc_rs won out for being
the new default of the rustls project and its more active
maintenance, while the only additional build dependency is
a C compiler.
This commit removes RustCrypto as a dependency. The explicitly
configured builders in src/connect.rs were switched over.
Any other usage of rustls will fall back to the default provider,
aws_lc_rs.
flake.nix was updated to use the musl toolchain to resolve correct
headers. The changes inject the appropriate musl cross-compilation
environment variables.
Addresses IM-97 and IM-57.
@ejjejj closed this Aug 7, 2026
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants

@patricklyc@ejj