pub struct VolatileWrite8Zeroizer;
Expand description

This zeroizer uses a volatile write per 8 bytes if the pointer is 8 byte aligned, and otherwise uses VolatileWriteZeroizer. This zeroization technique is available for all target platforms on stable, but not very fast.

In addition to the volatile write we place a compiler fence right next to the volatile write. This should not be necessary for secure zeroization since the volatile semantics guarenties our writes are not elided, and they can not be delayed since we are deallocating the memory after zeroization. The use of this fence is therefore only a precaution.

This zeroization method can benefit (in terms of performance) from using the MemZeroizer::zeroize_mem_blocks function instead of MemZeroizer::zeroize_mem function if a minimum alignment is known at compile time.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

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

Zeroize the memory pointed to by ptr and of size len bytes. Read more

Zeroize the memory pointed to by ptr and of size len bytes. Shorthand for Self::zeroize_mem_blocks::<0, 0>. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

The resulting type after obtaining ownership.

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

🔬 This is a nightly-only experimental API. (toowned_clone_into)

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.