breez_sdk_core

Type Alias Aes256CbcEnc

pub type Aes256CbcEnc = Encryptor<Aes256>;

Aliased Type§

struct Aes256CbcEnc { /* private fields */ }

Trait Implementations

Source§

impl<C> AlgorithmName for Encryptor<C>
where C: BlockEncryptMut + BlockCipher + AlgorithmName,

Source§

fn write_alg_name(f: &mut Formatter<'_>) -> Result<(), Error>

Write algorithm name into f.
Source§

impl<C> BlockEncryptMut for Encryptor<C>
where C: BlockEncryptMut + BlockCipher,

Source§

fn encrypt_with_backend_mut( &mut self, f: impl BlockClosure<BlockSize = <Encryptor<C> as BlockSizeUser>::BlockSize>, )

Encrypt data using backend provided to the rank-2 closure.
§

fn encrypt_block_inout_mut( &mut self, block: InOut<'_, '_, GenericArray<u8, Self::BlockSize>>, )

Encrypt single inout block.
§

fn encrypt_blocks_inout_mut( &mut self, blocks: InOutBuf<'_, '_, GenericArray<u8, Self::BlockSize>>, )

Encrypt inout blocks.
§

fn encrypt_block_mut(&mut self, block: &mut GenericArray<u8, Self::BlockSize>)

Encrypt single block in-place.
§

fn encrypt_block_b2b_mut( &mut self, in_block: &GenericArray<u8, Self::BlockSize>, out_block: &mut GenericArray<u8, Self::BlockSize>, )

Encrypt in_block and write result to out_block.
§

fn encrypt_blocks_mut( &mut self, blocks: &mut [GenericArray<u8, Self::BlockSize>], )

Encrypt blocks in-place.
§

fn encrypt_blocks_b2b_mut( &mut self, in_blocks: &[GenericArray<u8, Self::BlockSize>], out_blocks: &mut [GenericArray<u8, Self::BlockSize>], ) -> Result<(), NotEqualError>

Encrypt blocks buffer-to-buffer. Read more
§

fn encrypt_padded_inout_mut<'inp, 'out, P>( self, data: InOutBufReserved<'inp, 'out, u8>, ) -> Result<&'out [u8], PadError>
where P: Padding<Self::BlockSize>,

Pad input and encrypt. Returns resulting ciphertext slice. Read more
§

fn encrypt_padded_mut<P>( self, buf: &mut [u8], msg_len: usize, ) -> Result<&[u8], PadError>
where P: Padding<Self::BlockSize>,

Pad input and encrypt in-place. Returns resulting ciphertext slice. Read more
§

fn encrypt_padded_b2b_mut<'a, P>( self, msg: &[u8], out_buf: &'a mut [u8], ) -> Result<&'a [u8], PadError>
where P: Padding<Self::BlockSize>,

Pad input and encrypt buffer-to-buffer. Returns resulting ciphertext slice. Read more
§

fn encrypt_padded_vec_mut<P>(self, msg: &[u8]) -> Vec<u8>
where P: Padding<Self::BlockSize>,

Pad input and encrypt into a newly allocated Vec. Returns resulting ciphertext Vec.
Source§

impl<C> BlockSizeUser for Encryptor<C>
where C: BlockEncryptMut + BlockCipher,

Source§

type BlockSize = <C as BlockSizeUser>::BlockSize

Size of the block in bytes.
§

fn block_size() -> usize

Return block size in bytes.
Source§

impl<C> Clone for Encryptor<C>
where C: Clone + BlockEncryptMut + BlockCipher,

Source§

fn clone(&self) -> Encryptor<C>

Returns a copy of the value. Read more
1.0.0 · Source§

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

Performs copy-assignment from source. Read more
Source§

impl<C> Debug for Encryptor<C>
where C: BlockEncryptMut + BlockCipher + AlgorithmName,

Source§

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

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

impl<C> InnerIvInit for Encryptor<C>
where C: BlockEncryptMut + BlockCipher,

Source§

fn inner_iv_init( cipher: C, iv: &GenericArray<u8, <Encryptor<C> as IvSizeUser>::IvSize>, ) -> Encryptor<C>

Initialize value using inner and iv array.
§

fn inner_iv_slice_init( inner: Self::Inner, iv: &[u8], ) -> Result<Self, InvalidLength>

Initialize value using inner and iv slice.
§

fn generate_iv(rng: impl CryptoRng + RngCore) -> GenericArray<u8, Self::IvSize>

Generate random IV using the provided CryptoRng.
Source§

impl<C> InnerUser for Encryptor<C>
where C: BlockEncryptMut + BlockCipher,

Source§

type Inner = C

Inner type.
Source§

impl<C> IvSizeUser for Encryptor<C>
where C: BlockEncryptMut + BlockCipher,

Source§

type IvSize = <C as BlockSizeUser>::BlockSize

Initialization vector size in bytes.
§

fn iv_size() -> usize

Return IV size in bytes.
Source§

impl<C> IvState for Encryptor<C>
where C: BlockEncryptMut + BlockCipher,

Source§

fn iv_state(&self) -> GenericArray<u8, <Encryptor<C> as IvSizeUser>::IvSize>

Returns current IV state.