Crates.io | s2n-tls-sys |
lib.rs | s2n-tls-sys |
version | 0.3.8 |
source | src |
created_at | 2021-04-21 18:31:02.027179 |
updated_at | 2024-12-11 17:39:12.02595 |
description | A C99 implementation of the TLS/SSL protocols |
homepage | |
repository | https://github.com/aws/s2n-tls |
max_upload_size | |
id | 387774 |
size | 2,875,234 |
This crate provides low level rust bindings for s2n-tls which are autogenerated with bindgen
This crate is not intended for direct consumption by end consumers. Interested developers should instead look at the s2n-tls or s2n-tls-tokio crates. These provide higher-level, more ergonomic bindings than the s2n-tls-sys
crate.
The s2n-tls-sys
bindings crate contains the raw C code of s2n-tls
. By default, it follows this build process:
libs2n.a
libs2n.a
to the Rust bindingsaws-lc
through the aws-lc-rs
crates2n-tls-sys
crateYou can customize above build process to use your own pre-built libs2n. This is useful if you want the bindings to be built with a non-default libcrypto. Currently, the default libcrypto when generating rust bindings is aws-lc
. Here's how you can do that:
You may choose to link against a specific libcrypto at this step. For more information, see Building with a specific libcrypto. Also see Building s2n-tls for further guidance on configuring s2n-tls for your own use case.
cd
into your rust project and set environment variables to your libs2n artifacts.This tells the bindings to link to pre-built libs2n when running the build script for s2n-tls-sys
export S2N_TLS_LIB_DIR=<PATH_TO_ROOT_OF_S2N_TLS>/build/lib
export S2N_TLS_INCLUDE_DIR=<PATH_TO_ROOT_OF_S2N_TLS>/api
export LD_LIBRARY_PATH=$S2N_TLS_LIB_DIR:$LD_LIBRARY_PATH
S2N_TLS_LIB_DIR
points to the folder containing libs2n.a
/libs2n.so
artifact that you would like s2n-tls-sys to link against.
S2N_TLS_INCLUDE_DIR
points to the folder containing header files for libs2n.a
/libs2n.so
artifact.
LD_LIBRARY_PATH
adds the path to libs2n.a
/libs2n.so
artifact for dynamic linker's search path.
cargo build