Thank you for this library!
Would it be possible to add a function to add new shares to an existing pool without modifying the existing shares? i.e. something like
def add_new_shares(existing_shares,number_of_new_shares):
From what I've read on sssa, this should theoretically be possible. But so far my math skills have failed me trying to implement this myself. I don't understand if I would need the original values from https://github.com/SSSaaS/sssa-python/blob/master/SSSA/sssa.py#L17-L20 for this to work so I can pass them to evaulate_polynomal and if so, how I have to reconstruct them from the shares.
Thank you for this library!
Would it be possible to add a function to add new shares to an existing pool without modifying the existing shares? i.e. something like
From what I've read on sssa, this should theoretically be possible. But so far my math skills have failed me trying to implement this myself. I don't understand if I would need the original values from https://github.com/SSSaaS/sssa-python/blob/master/SSSA/sssa.py#L17-L20 for this to work so I can pass them to
evaulate_polynomaland if so, how I have to reconstruct them from the shares.