Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Force Aead::AeadImpl to be Send + Sync #61

Merged
merged 1 commit into from
Jul 3, 2024
Merged

Commits on Jun 7, 2024

  1. Force Aead::AeadImpl to be Send + Sync

    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.
    nox committed Jun 7, 2024
    Configuration menu
    Copy the full SHA
    74dcd20 View commit details
    Browse the repository at this point in the history