pub struct StreamSelfEncryptor { /* private fields */ }Expand description
The streaming encryptor to carry out the encryption on fly, chunk by chunk.
Implementations§
source§impl StreamSelfEncryptor
impl StreamSelfEncryptor
sourcepub fn encrypt_from_file(
file_path: PathBuf,
chunk_dir: Option<PathBuf>,
) -> Result<Self>
pub fn encrypt_from_file( file_path: PathBuf, chunk_dir: Option<PathBuf>, ) -> Result<Self>
For encryption, return with an intialized streaming encryptor.
If a chunk_dir is provided, the encrypted_chunks will be written into the specified dir as well.
sourcepub fn next_encryption(
&mut self,
) -> Result<(Option<EncryptedChunk>, Option<DataMap>)>
pub fn next_encryption( &mut self, ) -> Result<(Option<EncryptedChunk>, Option<DataMap>)>
Return the next encrypted chunk, if already reached the end, return with the data_map.
Note: only of the two returned options will be Some.
Trait Implementations§
source§impl Clone for StreamSelfEncryptor
impl Clone for StreamSelfEncryptor
source§fn clone(&self) -> StreamSelfEncryptor
fn clone(&self) -> StreamSelfEncryptor
Returns a copy of the value. Read more
1.6.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for StreamSelfEncryptor
impl RefUnwindSafe for StreamSelfEncryptor
impl Send for StreamSelfEncryptor
impl Sync for StreamSelfEncryptor
impl Unpin for StreamSelfEncryptor
impl UnwindSafe for StreamSelfEncryptor
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more