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
Would this be just moving code around, or changing what's exposed in the public API?
We're working on a FROST implementation here penumbra-zone/decaf377-rdsa#18 and would be happy to track any refactors there, just wondering if we should expect code we're currently using to disappear.
Would this be just moving code around, or changing what's exposed in the public API?
We're working on a FROST implementation here penumbra-zone/decaf377-rdsa#18 and would be happy to track any refactors there, just wondering if we should expect code we're currently using to disappear.
Just moving things around, basically users of frost-core would need to change imports from e.g. use frost_core::frost::SigningKey to use frost-core::SigningKey. It wouldn't affect ciphersuite crates, just frost-core.
In frost-core we currently have
However ciphersuite crates have
Change frost-core to follow the ciphersuite crates, merging
crate::frost
intocrate::
and removingcrate::frost
and move child modules up accordingly.This is a significant (though simple) refactoring so we should do this after all open PRs are merged
The text was updated successfully, but these errors were encountered: