quasor 6.1.6

A high-security AEAD based on a Duplex Sponge construction with SHAKE256, Argon2id, and BLAKE3.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// src/lib.rs
#![feature(portable_simd)]

pub mod builder;
mod constants;
mod keccak;
pub mod parallel;
mod quasor;
pub mod sponge;

// The public API is now based on the Quasor struct.
pub use builder::QuasorBuilder;
pub use quasor::{Error, Quasor};