secbuf 0.1.7

Secure, high-performance buffer management with automatic memory zeroing and aggressive cleanup
Documentation
1
2
3
4
5
6
// src/circular/mod.rs
//! Circular (ring) buffer for streaming data

pub mod buffer;

pub use buffer::CircularBuffer;