You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
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.
The text was updated successfully, but these errors were encountered: