#linux #secure-storage #keyring #syscalls #system-interface #keyctl #keyutils

no-std linux-keyutils

Rust interface to the Linux key-management facility. Provides a safe interface around the raw system calls allowing user-space programs to perform key manipulation.

8 releases

0.2.4 Jan 15, 2024
0.2.3 Feb 25, 2023
0.2.2 Dec 19, 2022
0.2.1 Oct 10, 2022
0.1.2 Sep 26, 2022

#190 in Unix APIs

Download history 14652/week @ 2024-07-29 12642/week @ 2024-08-05 14297/week @ 2024-08-12 12306/week @ 2024-08-19 13803/week @ 2024-08-26 14259/week @ 2024-09-02 13730/week @ 2024-09-09 10683/week @ 2024-09-16 13036/week @ 2024-09-23 13547/week @ 2024-09-30 13551/week @ 2024-10-07 14342/week @ 2024-10-14 18948/week @ 2024-10-21 21085/week @ 2024-10-28 18592/week @ 2024-11-04 17077/week @ 2024-11-11

76,495 downloads per month
Used in 9 crates (2 directly)

Apache-2.0 OR MIT

57KB
879 lines

linux-keyutils

cargo-badge-lib docs-badge-lib license-badge rust-version-badge build codecov

Rust interface to the Linux key-management facility. Provides a safe interface around the raw system calls allowing user-space programs to perform key manipulation.

There is a good cloudflare blog discussing why it should be used.

Basic Usage

To use linux-keyutils, first add this to your Cargo.toml:

[dependencies]
linux-keyutils = "0.2"

For more information please view the full documentation. There is also a small example program in the examples directory.

Features

  • #![no_std] by default.
  • For std programs KeyError implements std::error::Error when the std feature of this crate enabled.
  • Small footprint, the library only relies on the libc and bitflags crates.

License

Licensed under either of the following at your discretion:

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~145KB