Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Force Aead::AeadImpl to be Send + Sync (#61)
When trying to use AeadCtxR/AeadCtxS in a generic context which requires Send or Sync, downstream users need to add a bound to Aead::AeadImpl even though this is a doc(hidden) item and thus an implementation detail that may change afterwards. All implementations of Aead provide an AeadImpl type that is already Send + Sync so it doesn't hurt to add a trait bound there.
- Loading branch information