Skip to main content

EncodedBuffer

Struct EncodedBuffer 

Source
pub struct EncodedBuffer<const CAP: usize> { /* private fields */ }
Expand description

Stack-backed encoded Base64 output.

This type is intended for short values where heap allocation would be unnecessary but manually sizing and passing a separate output slice is noisy. Its visible bytes are produced by crate encoders, so Self::as_str can return &str without exposing a fallible UTF-8 conversion to callers.

The backing array is cleared when the value is dropped. This is best-effort data-retention reduction and is not a formal zeroization guarantee.

Implementations§

Source§

impl<const CAP: usize> EncodedBuffer<CAP>

Source

pub const fn new() -> Self

Creates an empty encoded buffer.

Source

pub const fn len(&self) -> usize

Returns the number of visible encoded bytes.

Source

pub const fn is_empty(&self) -> bool

Returns whether the buffer has no visible encoded bytes.

Source

pub const fn is_full(&self) -> bool

Returns whether the visible encoded bytes fill the stack backing array.

Source

pub const fn capacity(&self) -> usize

Returns the stack capacity in bytes.

Source

pub const fn remaining_capacity(&self) -> usize

Returns the number of unused bytes in the stack backing array.

Source

pub fn as_bytes(&self) -> &[u8]

Returns the visible encoded bytes.

Source

pub fn as_utf8(&self) -> Result<&str, Utf8Error>

Returns the visible encoded bytes as UTF-8 text.

Encoded Base64 output is produced as ASCII by this crate, so this method should not fail unless an internal invariant has been broken. It is provided for callers that prefer a fallible accessor over Self::as_str.

Source

pub fn as_str(&self) -> &str

Returns the visible encoded bytes as UTF-8.

§Panics

Panics only if the crate’s internal invariant is broken and the buffer contains non-UTF-8 bytes.

Source

pub fn constant_time_eq(&self, other: &[u8]) -> bool

Compares this encoded output to other without short-circuiting on the first differing byte.

Length and the final equality result remain public. For equal-length inputs, this helper scans every byte before returning. It is constant-time-oriented best effort, not a formal cryptographic constant-time guarantee.

Source

pub fn into_exposed_array(self) -> ([u8; CAP], usize)

Consumes the wrapper and returns the backing array plus visible length.

This is an explicit escape hatch for no-alloc interop with APIs that require ownership of a fixed array. The returned array is no longer redacted by formatting and will not be cleared by EncodedBuffer on drop; callers that keep handling sensitive data should arrange their own cleanup.

Source

pub fn clear(&mut self)

Clears the visible bytes and the full backing array.

Source

pub fn clear_tail(&mut self)

Clears bytes after the visible prefix.

Trait Implementations§

Source§

impl<const CAP: usize> AsRef<[u8]> for EncodedBuffer<CAP>

Source§

fn as_ref(&self) -> &[u8]

Converts this type into a shared reference of the (usually inferred) input type.
Source§

impl<const CAP: usize> Clone for EncodedBuffer<CAP>

Source§

fn clone(&self) -> Self

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<const CAP: usize> Debug for EncodedBuffer<CAP>

Source§

fn fmt(&self, formatter: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<const CAP: usize> Default for EncodedBuffer<CAP>

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl<const CAP: usize> Display for EncodedBuffer<CAP>

Source§

fn fmt(&self, formatter: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<const CAP: usize> Drop for EncodedBuffer<CAP>

Source§

fn drop(&mut self)

Executes the destructor for this type. Read more
Source§

fn pin_drop(self: Pin<&mut Self>)

🔬This is a nightly-only experimental API. (pin_ergonomics)
Execute the destructor for this type, but different to Drop::drop, it requires self to be pinned. Read more
Source§

impl<const CAP: usize> From<EncodedBuffer<CAP>> for SecretBuffer

Available on crate feature alloc only.
Source§

fn from(buffer: EncodedBuffer<CAP>) -> Self

Copies visible encoded bytes from a stack-backed buffer into an owned redacted buffer.

The consumed stack-backed buffer clears its backing array when it is dropped at the end of the conversion.

Source§

impl<const CAP: usize> PartialEq<&[u8]> for EncodedBuffer<CAP>

Source§

fn eq(&self, other: &&[u8]) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<const CAP: usize, const N: usize> PartialEq<&[u8; N]> for EncodedBuffer<CAP>

Source§

fn eq(&self, other: &&[u8; N]) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<const CAP: usize> PartialEq<&str> for EncodedBuffer<CAP>

Source§

fn eq(&self, other: &&str) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<const CAP: usize> PartialEq<EncodedBuffer<CAP>> for &[u8]

Source§

fn eq(&self, other: &EncodedBuffer<CAP>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<const CAP: usize, const N: usize> PartialEq<EncodedBuffer<CAP>> for &[u8; N]

Source§

fn eq(&self, other: &EncodedBuffer<CAP>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<const CAP: usize> PartialEq<EncodedBuffer<CAP>> for &str

Source§

fn eq(&self, other: &EncodedBuffer<CAP>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<const CAP: usize> PartialEq<EncodedBuffer<CAP>> for String

Available on crate feature alloc only.
Source§

fn eq(&self, other: &EncodedBuffer<CAP>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<const CAP: usize> PartialEq<String> for EncodedBuffer<CAP>

Available on crate feature alloc only.
Source§

fn eq(&self, other: &String) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<const CAP: usize> PartialEq for EncodedBuffer<CAP>

Source§

fn eq(&self, other: &Self) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<const CAP: usize> TryFrom<&[u8]> for EncodedBuffer<CAP>

Source§

fn try_from(input: &[u8]) -> Result<Self, Self::Error>

Encodes bytes into strict standard padded Base64 in a stack-backed buffer.

Use Engine::encode_buffer or Profile::encode_buffer when a different alphabet, padding mode, or line-wrapping profile is required.

Source§

type Error = EncodeError

The type returned in the event of a conversion error.
Source§

impl<const CAP: usize, const N: usize> TryFrom<&[u8; N]> for EncodedBuffer<CAP>

Source§

fn try_from(input: &[u8; N]) -> Result<Self, Self::Error>

Encodes a byte array into strict standard padded Base64 in a stack-backed buffer.

Use Engine::encode_buffer or Profile::encode_buffer when a different alphabet, padding mode, or line-wrapping profile is required.

Source§

type Error = EncodeError

The type returned in the event of a conversion error.
Source§

impl<const CAP: usize> TryFrom<&str> for EncodedBuffer<CAP>

Source§

fn try_from(input: &str) -> Result<Self, Self::Error>

Encodes UTF-8 text bytes into strict standard padded Base64 in a stack-backed buffer.

This treats the string as raw input bytes. Use Engine::encode_buffer or Profile::encode_buffer when a different alphabet, padding mode, or line-wrapping profile is required.

Source§

type Error = EncodeError

The type returned in the event of a conversion error.
Source§

impl<const CAP: usize> Eq for EncodedBuffer<CAP>

Auto Trait Implementations§

§

impl<const CAP: usize> Freeze for EncodedBuffer<CAP>

§

impl<const CAP: usize> RefUnwindSafe for EncodedBuffer<CAP>

§

impl<const CAP: usize> Send for EncodedBuffer<CAP>

§

impl<const CAP: usize> Sync for EncodedBuffer<CAP>

§

impl<const CAP: usize> Unpin for EncodedBuffer<CAP>

§

impl<const CAP: usize> UnsafeUnpin for EncodedBuffer<CAP>

§

impl<const CAP: usize> UnwindSafe for EncodedBuffer<CAP>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.