Skip to content

Latest commit

 

History

History

rustls-libssl

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

rustls-libssl is a partial reimplementation of the OpenSSL 3 libssl ABI. It is written in rust and uses rustls. It does not replace libcrypto: this is still required.

rustls-libssl

Status

This project is experimental. We have aimed for the subset of libssl used by:

  • curl on Ubuntu 22.04 LTS
  • nginx on Ubuntu 22.04 LTS and 24.04 LTS

We have a compatibility matrix and known issues.

Usage

Installation

$ wget https://github.com/rustls/rustls-openssl-compat/releases/latest/download/rustls-libssl_amd64.deb
$ sudo dpkg -i rustls-libssl_amd64.deb

Using curl:

$ with-rustls-libssl curl https://google.com/

with-rustls-libssl just sets LD_LIBRARY_PATH and executes the given process.

Using nginx:

$ sudo rustls-libssl-nginx enable
$ sudo systemctl daemon-reload
$ sudo service nginx restart

rustls-libssl-nginx enable installs a systemd drop-in in /etc/systemd/system/nginx.service.d/. rustls-libssl-nginx disable undoes that.

Changelog

The detailed list of changes in each release can be found at https://github.com/rustls/rustls-openssl-compat/releases.

License

rustls-libssl is distributed under the Apache-2.0 license. See LICENSE.