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
The sharks crate uses hashbrown::HashSet to hold key shares. However, the standard library HashSet has been implemented with hashbrown for a couple of years. If it's just for performance we should be able to drop the external dependency in favour of std::collections::HashSet.
Or switch to Vec for which ZeroizeOnDrop is available, per #30.
The sharks crate uses
hashbrown::HashSet
to hold key shares. However, the standard library HashSet has been implemented with hashbrown for a couple of years. If it's just for performance we should be able to drop the external dependency in favour ofstd::collections::HashSet
.Or switch to Vec for which
ZeroizeOnDrop
is available, per #30.Follow-up to #52.
The text was updated successfully, but these errors were encountered: