secbuf 0.1.7

Secure, high-performance buffer management with automatic memory zeroing and aggressive cleanup
Documentation
1
2
3
4
5
6
7
8
// src/buffer/mod.rs
//! High-performance buffer implementation

pub mod core;
pub(crate) mod ops;
pub(crate) mod unsafe_ops;

pub use core::Buffer;