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 new Ciphersuite trait methods introduced with the Taproot ciphersuite could allow making the RedPallas ciphersuite (from reddsa crate) easier to use by ensuring even-Y pubkeys using e.g. post_dkg(). (Currently the user needs to do it themselves if they use it with frost-core, rather than the non-generic functions in reddsa). However, unfortunately, it's not possible to run code after trusted dealer key generation.
Add a new Ciphersuite method, e.g. post_generate or post_split (since it should be effectively be called at the end of split()), which will then allow the RedPallas simplification.
The text was updated successfully, but these errors were encountered:
The new Ciphersuite trait methods introduced with the Taproot ciphersuite could allow making the RedPallas ciphersuite (from reddsa crate) easier to use by ensuring even-Y pubkeys using e.g.
post_dkg()
. (Currently the user needs to do it themselves if they use it withfrost-core
, rather than the non-generic functions inreddsa
). However, unfortunately, it's not possible to run code after trusted dealer key generation.Add a new Ciphersuite method, e.g.
post_generate
orpost_split
(since it should be effectively be called at the end ofsplit()
), which will then allow the RedPallas simplification.The text was updated successfully, but these errors were encountered: