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
If you discover a potential security issue in s2n we ask that you notify
AWS Security via our vulnerability reporting page. Please do not create a public github issue.
Problem:
Some of our Rust bindings structs impl Send or Sync, which is kind of unusual to do manually in Rust. It's not immediately clear why these structs need these marker traits, and it would be really nice to have an explanation for why we needed to implement those traits.
Solution:
Write some documentation explaining more in detail about why the Connection struct implements Send but not Sync. Also why the Config struct implements Send and Sync.
The text was updated successfully, but these errors were encountered:
Security issue notifications
If you discover a potential security issue in s2n we ask that you notify
AWS Security via our vulnerability reporting page. Please do not create a public github issue.
Problem:
Some of our Rust bindings structs impl Send or Sync, which is kind of unusual to do manually in Rust. It's not immediately clear why these structs need these marker traits, and it would be really nice to have an explanation for why we needed to implement those traits.
Solution:
Write some documentation explaining more in detail about why the Connection struct implements Send but not Sync. Also why the Config struct implements Send and Sync.
The text was updated successfully, but these errors were encountered: