rust-crypto icon indicating copy to clipboard operation
rust-crypto copied to clipboard

aes::cbc_encryptor result not Send

Open Emm54321 opened this issue 3 years ago • 0 comments

Is there any reason for aes::cbc_encryptor (& co) to return a Box<dyn Encryptor + 'static> and not a Box<dyn Encryptor + Send + 'static> ? The CbcEncryptor it returns is Send and the function requires a PaddingProcessor+Send.

Emm54321 avatar May 04 '21 19:05 Emm54321