Docs Crates.io Build & test Codecov

dryoc: Don't Roll Your Own Crypto

dryoc is a pure-Rust implementation of the excellent libsodium library.

The purpose of this project is to provide a pure-Rust, mostly drop-in replacement for libsodium. This library has nearly the same ergonomics as libsodium (referred to in dryoc as the Classic API), so that people familiar with libsodium can use this library nearly interchangeably. While the API is not 100% identical to libsodium, most functions have the same or very similar signatures.

In addition to the Classic API, there's a Rustaceous API which aims to bring an idiomatic Rust implementation of libsodium's core features: public and secret key authenticated cryptography.

Not all features from libsodium are implemented here, such as advanced "under the hood" features of libsodium. For those specific features, it's recommended you rely on other crates directly.

This project prefers to rely on existing well-known implementations of cryptographic functions where possible, rather than succumbing to NIH syndrome. This library leverages existing vetted projects in the Rust ecosystem to provide high quality and easy to use cryptography.

Usage

In cargo.toml:

toml [dependencies] dryoc = "0.2"

With optional features:

toml [dependencies] dryoc = {version = "0.2", features = ["serde", "base64", "simd_backend"]

Features

Project status

The following libsodium features are currently implemented, or awaiting implementation:

The following libsodium features are not implemented, and there's no plan to implement them:

Stargazers over time

Stargazers over time

Other Rust implementations worth mentioning