18 releases

new 0.9.3 Mar 25, 2024
0.9.1 Oct 23, 2023
0.8.0 Jun 6, 2023
0.6.1 Feb 15, 2023
0.3.0 Mar 27, 2020

#85 in Unix APIs

Download history 759/week @ 2023-12-08 728/week @ 2023-12-15 537/week @ 2023-12-22 1264/week @ 2023-12-29 1723/week @ 2024-01-05 941/week @ 2024-01-12 1374/week @ 2024-01-19 591/week @ 2024-01-26 1221/week @ 2024-02-02 1025/week @ 2024-02-09 1042/week @ 2024-02-16 864/week @ 2024-02-23 797/week @ 2024-03-01 957/week @ 2024-03-08 1501/week @ 2024-03-15 1780/week @ 2024-03-22

5,213 downloads per month
Used in 3 crates

MPL-2.0 license

185KB
4K SLoC

Latest Version Documentation

libcryptsetup-rs

This crate provides Rust bindings for libcryptsetup.

Note on thread-safety

libcryptsetup is not thread-safe and also depends on libraries that are not thread-safe. Any use of libcryptsetup by default in a multithreaded environment will result in undefined behavior.

As a workaround, this library provides a feature (mutex) to cause all calls to libcryptsetup to acquire a crate-level mutex. This will enforce single threaded access to all invocations of the libcryptsetup API.

Rust's decision to make pointers !Send should be respected. Any data structure that contains a pointer is not safe to send across threads. Providing an unsafe impl Send {} for any data structure provided by libcryptsetup-rs that is not Send may result in undefined behavior.

Building

The libcryptsetup bindings require some dependencies outside of cargo to build properly:

  1. cryptsetup (provided by cryptsetup on Fedora)
  2. cryptsetup development headers (provided by cryptsetup-devel on Fedora)
  3. libclang (provided by clang on Fedora)

Sanity testing bindings

There is one test that actually invokes libcryptsetup and can be used for basic sanity testing of the bindings as it will only succeed if low level bindings are correctly generated, the high level bindings build, and libcryptsetup successfully encrypts a loopback device.

This can be invoked as follows:

make test-loopback

Dependencies

~1–4.5MB
~80K SLoC