[][src]Struct rclone_crypt::decrypter::Decrypter

pub struct Decrypter { /* fields omitted */ }

Decrypter instance for a single file. This is not a managed reader; it must be assisted with a separate reader that passes it blocks of encrypted data of interest.

Methods

impl Decrypter[src]

pub fn new(file_key: &FileKey, file_header: &[u8]) -> Result<Self>[src]

pub fn decrypt_block(&self, block_id: u64, block: &[u8]) -> Result<Vec<u8>>[src]

Decrypts a block using the nonce and password state The block must be of max BLOCK_SIZE bytes; the final block in the file may be lower than this but otherwise block will be of that exact size.

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.