nectar-primitives 0.1.1

Core primitives for Ethereum Swarm: chunks, addresses, and binary merkle trees
Documentation
//! Encryption error types.

use thiserror::Error;

/// Errors from encryption operations.
#[derive(Debug, Error)]
pub enum EncryptionError {
    /// Input data is shorter than the required minimum.
    #[error("data too short: {len} bytes, minimum {min}")]
    DataTooShort {
        /// Actual length.
        len: usize,
        /// Minimum required length.
        min: usize,
    },

    /// Input data exceeds the maximum allowed length.
    #[error("data too long: {len} bytes, maximum {max}")]
    DataTooLong {
        /// Actual length.
        len: usize,
        /// Maximum allowed length.
        max: usize,
    },

    /// Reference byte slice is not 32 or 64 bytes.
    #[error("invalid reference length: {len} bytes (expected 32 or 64)")]
    InvalidReferenceLength {
        /// Actual length.
        len: usize,
    },

    /// Key byte slice is not 32 bytes.
    #[error("invalid key length: {len} bytes (expected 32)")]
    InvalidKeyLength {
        /// Actual length.
        len: usize,
    },

    /// Output buffer is too small for decryption.
    #[error("output buffer too small: {len} bytes, need {required}")]
    OutputBufferTooSmall {
        /// Actual buffer length.
        len: usize,
        /// Required buffer length.
        required: usize,
    },
}